/* ===== PROFILE PAGE STYLES ===== */

/* Profile Header */
.profile-header {
    padding: 2rem 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.profile-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Profile Card */
.profile-card {
    padding: 2rem;
    min-height: 200px;
    margin-top: 0;
}

.profile-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Profile Avatar */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--success-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.profile-avatar .material-symbols-outlined {
    font-size: 48px;
}

/* Profile Info List */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--tertiary-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.profile-info-item:hover {
    background: #e0e7ff;
    transform: translateX(4px);
}

.profile-info-item .material-symbols-outlined {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.profile-info-item small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.profile-info-item p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-all;
}

/* Logout Button */
#logoutBtn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600;
    transition: all var(--transition-base);
}

#logoutBtn:hover {
    background: #dc2626 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Token Display */
#tokenDisplay {
    animation: fadeIn 0.3s ease-out;
}

#tokenDisplay pre {
    max-height: 200px;
    overflow-y: auto;
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Profile Responsive */
@media only screen and (max-width: 992px) {
    .profile-header {
        padding: 1.5rem 0;
    }

    .profile-header .d-flex {
        flex-direction: column;
        gap: 1rem;
    }

    .profile-header h1 {
        font-size: 1.75rem;
    }

    .profile-card {
        padding: 1.5rem;
    }

    .profile-avatar {
        width: 64px;
        height: 64px;
    }

    .profile-avatar .material-symbols-outlined {
        font-size: 36px;
    }
}

