.pu-height-full {
    height: 100% !important;
}

.pu-avatar-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.pu-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.pu-avatar-overlay-legacy {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.pu-avatar-file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.pu-avatar-wrapper:hover .pu-avatar-img {
    transform: scale(1.05);
}

.pu-avatar-wrapper:hover .pu-avatar-overlay-legacy {
    opacity: 1;
}

.pu-bg-success-soft {
    background-color: rgba(40, 167, 69, 0.15);
}

.pu-bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.15);
}

.pu-bg-secondary-soft {
    background-color: rgba(108, 117, 125, 0.15);
}

.pu-meta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pu-meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.55rem 0.75rem;
    border-radius: 0.6rem;
    background: #f8f9fa;
}

.pu-meta-item i {
    font-size: 0.9rem;
    color: #6c757d;
}

.pu-meta-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    font-size: 0.85rem;
}

.pu-meta-value {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Contenedor principal */
.pu-avatar-wrapper {
    width: 180px;
    height: 180px;
}

/* Imagen de perfil */
.pu-avatar-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03),
        0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03),
        0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05),
        0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
    transition: all 0.3s ease;
}

.pu-avatar-img:hover {
    transform: scale(1.02);
}

/* Overlay */
.pu-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.pu-avatar-wrapper:hover .pu-avatar-overlay {
    opacity: 1;
}

/* Contenido del overlay */
.pu-avatar-overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Botones circulares */
.pu-btn-icon-only {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pu-btn-icon-inner {
    font-size: 20px;
    line-height: 1;
}

.pu-btn-pill {
    border-radius: 50px;
}

/* Efectos hover en botones */
.pu-avatar-overlay .btn {
    transition: all 0.2s ease;
}

.pu-avatar-overlay .btn:hover {
    transform: scale(1.1);
}

.pu-avatar-overlay .btn:active {
    transform: scale(0.95);
}

/* Input file oculto */
label {
    cursor: pointer;
    margin-bottom: 0;
}