.account-page-wrapper {
    background-color: #005596;
    padding: 20px;
    margin: 0;
    position: relative;
}

.account-container {
    display: flex;
    margin: 0 auto;
    gap: 20px;
    align-items: stretch;
}

.account-sidebar {
    background: #ffffff;
    border-radius: 20px;
    padding: 25px 15px;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.nav-section h3 {
    color: #013775;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-section li {
    margin-bottom: 6px;
}

.nav-section a {
    color: #005596;
    text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-section a:hover {
    background: rgba(0, 85, 150, 0.1);
    color: #013775;
    transform: translateX(5px);
}

.nav-section a.active {
    color: #013775;
    font-weight: 700;
}

.account-content {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    min-height: 500px;
    color: #333;
    display: flex;
    flex-direction: column;
}

.account-content h1,
.account-content h2 {
    color: #013775;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.account-content h3,
.account-content h4 {
    color: #005596;
    text-transform: uppercase;
}

.account-content p,
.account-content span:not(.badge):not(.text-muted),
.account-content label,
.account-content input,
.account-content .form-control {
    text-transform: none;
}

.account-content .row {
    margin-bottom: 1rem;
}

.account-content .form-control,
.account-content .form-control-plaintext {
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .account-container {
        flex-direction: column;
        align-items: stretch;
    }

    .account-sidebar {
        width: 100%;
    }

    .account-nav {
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-section {
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .account-page-wrapper {
        padding: 10px;
    }

    .account-container {
        gap: 10px;
        max-width: 100%;
    }

    .account-sidebar {
        padding: 15px 10px;
    }

    .account-content {
        padding: 15px;
    }

    .nav-section h3 {
        font-size: 13px;
    }

    .nav-section a {
        font-size: 11px;
        padding: 5px 8px;
    }
}