/* 
===================================================
 FullStackDost UI - Premium Account Dashboard
===================================================
*/

.user-registration {
    display: flex !important;
    flex-wrap: wrap;
    gap: 32px;
    margin: 40px auto;
    max-width: 1100px;
    align-items: flex-start;
}

/* Sidebar Navigation Wrapper */
.user-registration .user-registration-MyAccount-navigation--wrapper {
    flex: 0 0 280px;
    background: var(--fsd-card-bg, #ffffff);
    border-radius: var(--fsd-radius-lg, 16px);
    box-shadow: var(--fsd-shadow, 0 4px 20px rgba(0,0,0,0.05));
    padding: 24px 0;
    border: 1px solid var(--fsd-border, #f1f5f9);
    position: sticky;
    top: 120px;
    width: 100%;
}

/* Sidebar Profile Header */
.user-registration .user-registration-profile-header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--fsd-border, #f1f5f9);
}

.user-registration .user-registration-profile-header-nav .user-registration-img-container img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 2px solid white;
}

.user-registration .user-registration-profile-header-nav header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--fsd-text, #1e293b);
    line-height: 1.2;
}

/* Sidebar Navigation Menu */
.user-registration nav.user-registration-MyAccount-navigation ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.user-registration nav.user-registration-MyAccount-navigation li {
    margin: 0 !important;
    padding: 0 16px !important;
}

.user-registration nav.user-registration-MyAccount-navigation li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--fsd-text-muted, #64748b);
    font-weight: 500;
    text-decoration: none !important;
    border-radius: var(--fsd-radius, 8px);
    transition: all 0.25s ease;
    margin-bottom: 4px;
    border-left: 3px solid transparent;
}

.user-registration nav.user-registration-MyAccount-navigation li:hover a {
    background: var(--fsd-primary-light, #eff6ff);
    color: var(--fsd-primary, #3b82f6);
}

.user-registration nav.user-registration-MyAccount-navigation li.is-active a {
    background: var(--fsd-primary-light, #eff6ff);
    color: var(--fsd-primary, #3b82f6);
    font-weight: 600;
    border-left-color: var(--fsd-primary, #3b82f6);
}

/* Main Content Area */
.user-registration .user-registration-MyAccount-content {
    flex: 1 1 0%;
    min-width: 0;
    background: var(--fsd-card-bg, #ffffff);
    border-radius: var(--fsd-radius-lg, 16px);
    box-shadow: var(--fsd-shadow, 0 4px 20px rgba(0,0,0,0.05));
    padding: 48px;
    border: 1px solid var(--fsd-border, #f1f5f9);
    width: 100%;
}

.user-registration .user-registration-MyAccount-content__header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--fsd-border, #f1f5f9);
}

.user-registration .user-registration-MyAccount-content__header h1,
.user-registration .user-registration-MyAccount-content__header h2,
.user-registration .user-registration-MyAccount-content__header h3 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--fsd-text, #0f172a) !important;
    margin: 0 !important;
}

.user-registration .user-registration-MyAccount-content__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fsd-text, #1e293b);
    margin-bottom: 40px;
    text-align: center;
}

/* Dashboard Profile Header (Center) */
.user-registration .user-registration-profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
    text-align: center;
}

.user-registration .user-registration-profile-header .user-registration-img-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 4px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.user-registration .user-registration-profile-header .user-registration-img-container img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.user-registration .user-registration-profile-header header h3 {
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    color: var(--fsd-text, #1e293b) !important;
    margin: 0 !important;
}

/* Dashboard Text */
.user-registration .user-registration-MyAccount-content__body p {
    font-size: 1.125rem;
    color: var(--fsd-text-muted, #475569);
    line-height: 1.7;
    margin-bottom: 24px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.user-registration .user-registration-MyAccount-content__body p a {
    color: var(--fsd-primary, #3b82f6);
    text-decoration: none !important;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s ease;
}

.user-registration .user-registration-MyAccount-content__body p a:hover {
    border-bottom-color: var(--fsd-primary, #3b82f6);
}

.user-registration .user-registration-MyAccount-content__body strong {
    color: var(--fsd-text, #1e293b);
}

/* Responsive */
@media (max-width: 900px) {
    .user-registration {
        flex-direction: column;
        padding: 0 16px;
    }
    
    .user-registration .user-registration-MyAccount-navigation--wrapper {
        flex: 1 1 100%;
        position: static;
        width: 100%;
    }
    
    .user-registration .user-registration-MyAccount-content {
        flex: 1 1 100%;
        padding: 32px 24px;
    }
}

/* Fix for Pro Tip notice box stacking vertically */
.user-registration-myaccount-notice-box.pro-tip,
.user-registration-myaccount-notice-box.existing-users {
    display: block !important;
}

.user-registration-myaccount-notice-box.pro-tip::before,
.user-registration-myaccount-notice-box.existing-users::before {
    display: inline-block;
    margin-right: 6px;
}
