/* Sidebar Base */
.widget-nav-menu {
    background: #fff;
    padding: 15px;
    border: 1px solid #000000;
}

/* Main Categories */
.sidebar-title {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;    
    background: #ea0000;
    color: #ffffff;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.sidebar-title:hover {
    background: #ea0000;
    color: white;
}

/* Subcategories as Links */
.submenu-title a {
    display: block;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    background: #ea0000;
    color: #ffffff;
    padding: 8px;
    margin: 3px 0;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

.submenu-title a:hover {
    background: #ea0000;
    color: white;
}

/* Active Category */
.active-category {
    background: #ea0000 !important;
    color: white !important;
}
    .contact-widget {
    border: 1px solid #000000; /* Blue border, change color as needed */
    border-radius: 0px; /* Rounded corners */
    padding: 20px;
    background-color: #f9f9f9; /* Light background */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.contact-widget-wrapper li {
    margin-bottom: 10px;
    list-style: none; /* Removes bullet points */
    font-size: 14px;
    display: flex;
    align-items: center;
}

.contact-widget-wrapper i {
    margin-right: 10px;
    font-size: 16px;
    color: #000000; /* Icon color */
}

.contact-widget a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.contact-widget a:hover {
    text-decoration: underline;
}

    