/* Header Dashboard User Styles */
/* Corporate Colors: #ffc700, #fff3cd, #856404, rgba(0,0,0,.84) */

.header_auth__user {
    padding: 20px;
}

.header_auth__user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.header_auth__user-photo,
.header_auth__user-photo-placeholder {
    width: 60px;
    height: 75px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.header_auth__user-photo {
    object-fit: cover;
}

.header_auth__user-photo-placeholder {
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_auth__user-photo-placeholder svg {
    width: 30px;
    height: 30px;
    fill: #999;
}

.header_auth__user-details {
    flex: 1;
    min-width: 0;
}

.header_auth__user-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header_auth__user-email {
    font-size: 13px;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header_auth__user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header_auth__user-actions .btn {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.header_auth__user-actions .btn-primary {
    background: #ffc700;
    color: #856404;
    font-weight: 600;
}

.header_auth__user-actions .btn-primary:hover {
    background: #e6b300;
    color: #000;
    text-decoration: none;
}

.header_auth__user-actions .btn-secondary {
    background: #f5f5f5;
    color: #666;
}

.header_auth__user-actions .btn-secondary:hover {
    background: #e0e0e0;
    text-decoration: none;
}

