/* General Account Page Styles */
body {
    background-color: #f8f9fa;
}

.account-container {
    padding: 120px 0 60px; /* Adjust for fixed navbar */
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #333;
}

/* Profile Card Styles */
.profile-card {
    text-align: center;
}

.profile-picture-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.profile-picture {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.edit-picture-btn {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: #1976d2;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.edit-picture-btn:hover {
    background-color: #1565c0;
}

.profile-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    color: #333;
}

.profile-card p {
    margin: 0;
    color: #666;
    font-size: 1rem;
}

/* Form Styles (reusing from styles.css but with some overrides) */
.form-group small {
    font-size: 0.8rem;
    color: #888;
    margin-top: 4px;
}

.form-group input[disabled] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.form-actions {
    justify-content: flex-start;
}

/* Notification Styles */
#notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.notification.show {
    opacity: 1;
    transform: translateX(0);
}
.notification.success { background-color: #4caf50; }
.notification.error { background-color: #f44336; }
.notification.info { background-color: #2196f3; }

/* Responsive */
@media (max-width: 992px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}