.profile-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    padding: 40px 0;
}

.profile-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 380px;
    width: 100%;
    text-align: center;
    transition: box-shadow 0.3s;
}

.profile-card:hover {
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

.card-avatar {
    margin-bottom: 1.2rem;
}

.card-avatar img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid #0d8abc;
    background: #f4f8fb;
    object-fit: cover;
}

.card-details h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0d8abc;
    font-weight: 700;
}

.card-details .quote {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.card-details .email {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.profileBtns.flex {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.profile-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-btn.reset {
    background: #f0f4f8;
    color: #0d8abc;
    border: 1px solid #0d8abc;
}

.profile-btn.reset:hover {
    background: #0d8abc;
    color: #fff;
}

.profile-btn.logout {
    background: #ff4d4f;
    color: #fff;
}

.profile-btn.logout:hover {
    background: #d9363e;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .profile-container {
        padding: 30px 0;
    }

    .profile-card {
        max-width: 50%;
        padding: 2rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .profile-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .profile-card {
        max-width: 60%;
        padding: 1.5rem 0.8rem;
    }

    .card-details h1 {
        font-size: 1.2rem;
    }

    .profile-btn {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 500px) {
    .profile-card {
        padding: 1rem 0.3rem;
        max-width: 85%;
    }

    .card-avatar img {
        width: 72px;
        height: 72px;
    }

    .card-details h1 {
        font-size: 1rem;
    }

    .profile-btn {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    #profileBtn {
        font-size: 10px;
        padding: 5px 10px;
    }
}

@media (max-width: 375px) {
    .profile-card {
        padding: 0.7rem 0.1rem;
    }

    .card-avatar img {
        width: 56px;
        height: 56px;
    }
}