/* Accordion Animation Styles */
.side-menu-zone {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
}

.side-menu-zone.expanded {
    max-height: 2000px;
    transition: max-height 0.6s ease-in;
}

/* Sidebar Header Styles */
.zone-header {
    background-color: #e9e9e9;
    color: #333;
    font-size: 13px;
    margin: 15px 0 0 0;
    padding: 8px 10px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    position: relative;
    user-select: none;
}

.zone-header:hover {
    background-color: #e0e0e0;
}

.zone-header.active-header {
    margin-bottom: 0;
    border-bottom: none;
}

.zone-indicator {
    float: right;
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

/* Country link base styles */
.sidebar-country-link {
    display: block;
    padding: 4px 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
}

#staticCountryList ul {
    list-style: none;
    padding: 8px 0 0 0;
    margin: 0;
}

#staticCountryList li {
    margin-bottom: 1px;
}

/* Country link hover effect */
#staticCountryList ul li a:hover {
    color: #800000 !important;
    background-color: #fce4e4 !important;
    padding-left: 14px !important;
}