/* ==========================================================================
   1. Sidebar Customization (Force White Skin)
   ========================================================================== */

/* Override Sidebar Background */


/* Sidebar Widget Titles */
.side-aside .widget-title {
    color: #222 !important;
    border-color: #eee !important;
}

/* Close Button */
.side-aside .close-side-aside {
    color: #333 !important;
}

.side-aside .close-side-aside:hover {
    color: #ff0000 !important;
}

/* Scrollbar customization for white theme */
.side-aside-wrapper::-webkit-scrollbar-thumb {
    background-color: #ccc !important;
}

.side-aside-wrapper::-webkit-scrollbar-track {
    background-color: #f5f5f5 !important;
}


/* ==========================================================================
   2. Icons Block Styling
   ========================================================================== */
#cd-lateral-nav {
    display: block;
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 99;
    /* Space for the close button if it is absolute */
}


#cd-lateral-nav .topIcons {
    margin-bottom: 10px;
}



/* Sidebar Logo */
.sidebar-logo {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.sidebar-logo img {
    max-width: 150px;
    height: auto;
    display: inline-block;
}

.cntnrIcons {
    display: flex;
    justify-content: space-around;
    /* Distribute icons evenly */
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cntnrIcons .icons {
    text-align: center;
    flex: 1;
    /* Equal width */
    max-width: 60px;
    /* Adjust as needed */
}

.cntnrIcons .icons a {
    display: block;
    transition: transform 0.2s ease;
}

.cntnrIcons .icons a:hover {
    transform: translateY(-3px);
    /* Hover Effect */
}

.cntnrIcons .icons img {
    width: 40px;
    /* Icon size */
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Mobile Responsiveness for Icons */
@media (max-width: 767px) {
    .cntnrIcons .icons img {
        width: 32px;
        height: 32px;
    }
}