/* =========================================
   1. MAIN NAVIGATION BAR
   ========================================= */
.menuLD {
    margin: 0;                  /* Pins bar to the left */
    padding: 0;                 /* Resets padding for centering */
    width: 980px;               /* Fixed width */
    background-color: #414042;  /* Slate */
    display: flex;              
    justify-content: center;    /* Centers text inside the bar */
    align-items: center;        /* Vertically centers text */
    list-style: none;
    height: 50px;               
    border-radius: 8px;         /* Subtle rounding */
    box-sizing: border-box;
    box-shadow: none;           /* Flat design as requested */
    margin-bottom: 20px;
}

.menuLD li {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    margin: 0 15px;             /* Space between items */
}

.menuLD li a, .menuLD li a:visited {
    color: #E7E8E9;             /* Silver */
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menuLD li a:hover {
    color: #F7B24D;             /* Orange hover */
}

/* Active State Underline */
.menuLD li.active::after {
    content: '';
    position: absolute;
    bottom: 12px;               
    left: 0;                    
    right: 0;                   
    height: 3px;
    background-color: #F7B24D;  /* Orange indicator */
    border-radius: 2px;
}

/* =========================================
   2. CONTENT LAYOUT (ROWS & CARDS)
   ========================================= */
.content-row {
    display: flex;
    gap: 20px;
    width: 980px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.content-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #E7E8E9;
    box-sizing: border-box;
    font-family: 'IBM Plex Sans', sans-serif;
}

.content-card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #414042;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.content-card p {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #414042;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* =========================================
   3. BUTTON STYLES (UNIFORM WIDTH)
   ========================================= */
.btn-orange, .btn-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    white-space: nowrap;
}

.btn-orange {
    background-color: #F7B24D !important;
    color: #FFFFFF !important;
    border: none;
}

.btn-orange:hover {
    background-color: #e5a13c !important;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #414042 !important;
    border: 1.5px solid #414042;
}

.btn-outline:hover {
    background-color: #414042 !important;
    color: #FFFFFF !important;
}

/* =========================================
   4. ACCOUNT MANAGEMENT & UI EXTRAS
   ========================================= */
.account-link {
    display: inline-block;
    text-decoration: none !important;
    transition: transform 0.2s ease-in-out;
    text-align: center;
}

.account-link:hover {
    transform: scale(1.1);
}

.account-link:hover .icon-circle {
    background-color: #F7B24D !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.account-link:hover .icon-circle i {
    color: #ffffff !important;
}

.icon-circle {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.card-alert {
    border-left: 5px solid #F7B24D !important;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 980px;
    margin-bottom: 25px;
    box-sizing: border-box;
    background: #FFFFFF;
    padding: 15px;
    border-radius: 0 8px 8px 0;
}

.card-alert i.fa {
    color: #F7B24D !important;
}

.table-rounded-corners, .header-rounded-box {
    border-radius: 12px;
    border: 1px solid #E7E8E9;
    overflow: hidden;
    width: 980px;
    background-color: #FFFFFF;
    margin-bottom: 20px;
}