@font-face {
    font-family: 'KalpurushRegular';
    src: url('/website/font/NotoSansBengali-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background: url(/website/images/bg_main_new.gif) repeat-y scroll center top rgba(0, 0, 0, 0);
}

.no-decoration {
    text-decoration: none;
    color: inherit;
}

.purple-bar {
    background-color: #008532;
    height: 56px;
    padding: 12px 0;
    /* border-bottom: 4px solid #8dbf51; */
}

.main-container {
    max-width: 1042px !important;
}

.select2 .dropdown-toggle::after {
    /* Change the color here (e.g., to red) */
    border-top-color: red !important;
    border-right-color: red !important;
    border-bottom-color: red !important;
    border-left-color: red !important;
}

.fixed-logo {
    position: absolute;
    top: 60px;
    left: 3%;
    z-index: 12;
}

.new-menu {
    height: 47px;
}

.new-menu>li {
    height: 47px;
}

.meganizr>li>div,
.meganizr>li>ul,
.meganizr>li>ul li>ul {
    padding: 0 !important;
}

.menu li {
    position: relative;
    margin: 0 0 5px !important;
}

.copyright {
    padding: 13px 0 !important;
}

.breaking-news ul {
    width: 100% !important;
}

#content {
    background: none !important;
}

#notice-board {
    border: 1px solid #dddddd;
    font-size: 1em;
    padding: 0 0 10px 0;
    margin-bottom: 20px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ebebeb', GradientType=0);
}

.notice-board-bg {
    background: url(/website/images/welcome_grad.png) repeat-x scroll left top transparent;
    background-image: url(/website/images/bg_notice_board.png);
    background-repeat: no-repeat;
    padding: 10px 0 20px 100px;
}

#notice-board ul li {
    list-style: none;
}

#notice-board-ticker {
    padding-right: 10px;
}

.no-decoration {
    text-decoration: none;
    color: inherit;
}

#notice-board-ticker ul li {
    line-height: 18px;
    margin-bottom: 5px;
}

.btn-custom {
    background-image: linear-gradient(to bottom, #666, #a6a6a6);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #a2a2a2;
    padding: 0 5px;
    color: #fff;
    background-color: #a6a6a6;
    font-size: 14px;
}

.news-box {
    display: block;
    /* relax layout so inner elements stack vertically */
    font-size: 16px;
    border: 1px solid #dddddd;
    padding: 12px;
    background-color: #EFEFEF;
}

.news-box .news-title {
    margin: 0 0 8px 0;
    font-weight: 700;
}

.news-box .news-list {
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    max-height: none;
}

.news-box .news-list li {
    display: block;
    height: auto;
    margin-bottom: 8px;
    padding-left: 0;
    background: none;
    /* override any site-wide bullet/background */
}

/* Ensure the 'All' button inside the news-box can float right */
.news-box .btn.float-end {
    float: right !important;
}

.news-list li.show {
    display: inline-block;
    animation: slideUp 0.5s ease-in-out;
}

/* Animation for sliding the list item */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box {
    box-shadow: 0px 1px 3px 0px #cdcdcd;
    border-radius: 8px;
    border: 1px solid #dddddd;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 12px;
    /* Fixed height so all service boxes match */
    height: 240px;
    min-height: 240px;
    /* Use flex so icon and title sit on the same line, and the ul wraps below */
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    /* align content to top inside fixed height */
    gap: 12px;
}

.service-box h4 {
    margin: 0px;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 0 !important;
    font-weight: 700;
    order: 2;
    margin-top: 23px;
    /* ensure title sits after the icon */
}

.service-box>img {
    /* render images inside a circular white container (only for direct child icons) */
    width: 63px !important;
    height: 63px !important;
    object-fit: contain;
    background: #ffffff;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03) inset;
    flex: 0 0 auto;
    order: 1;
    /* icon first */
    display: inline-block;
    overflow: hidden;
}

.service-box ul {
    padding-left: 0;
    margin-top: -5px;
    width: 100%;
    order: 3;
    /* put list below the icon+title row */
    list-style: none;
    /* ensure no default bullets for DB-driven lists */
    background: none;
    background-image: none;
}

/* service-box list items: gray circular bullet */
.service-box ul li {
    list-style: none;
    position: relative;
    padding-left: 18px;
    margin-left: 0;
    /* margin-bottom: 6px; */
    margin-left: 25px;
    background: none;
    /* override any site-wide bullet/background */
    background-image: none;
    font-size: 14px;
}

.service-box ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #676f7e;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

/* Gallery-specific presentation: make the box header a full-width green bar with white text
   and stack the gallery content below it. This keeps photo/video galleries visually
   distinct from other service boxes. */
.gallery-header {
    order: 1;
    display: block;
    width: 100%;
    /* fill available content width inside the service-box padding */
    margin: 0 0 12px 0;
    /* keep spacing below header */
    padding: 8px 12px;
    background: #008532;
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px;
    align-self: stretch;
    /* ensure it stretches to full content width */
    text-align: center;
}

.gallery-header h4 {
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.gallery-box>.row {
    order: 2;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

/* Ensure gallery images stay square/uncropped and do not inherit circular styling */
.gallery-box img {
    border-radius: 4px;
    object-fit: cover !important;
}

.camera_target {
    border-radius: 0px !important;
}

.service-box ul li {
    list-style: none;
    background: none;
}

/* Sidebar card boxes (profile, links, hotline, visitor status, etc.) */
.card-box {
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 0;
    /* header will handle its own padding */
    margin-bottom: 12px;
    background: #fff;
    overflow: hidden;
}

/* Title for sidebar cards: separate green header with rounded corners and centered white text */
.card-header {
    display: block;
    width: auto;
    box-sizing: border-box;
    margin: 12px;
    /* keep spacing from the card edges */
    padding: 8px 12px;
    background: #008532;
    color: #ffffff;
    font-weight: 700;
    border-radius: 6px !important;
    text-align: center;
}

.card-header h6,
.card-header h5 {
    margin: 0;
    padding: 0;
}

.card-box .links {
    padding: 12px;
}

.card-box .table-responsive,
.card-box audio,
.card-box img {
    padding: 12px;
}

.bk-org {
    background-color: #609513 !important;
    color: #fff;
    height: 34px;
    display: flex;
    align-items: center;
    text-transform: capitalize !important;
    justify-content: center;
}

.profile-box {
    border: 1px solid #609513 !important;
}

.links li {
    border-bottom: 1px solid black;
}

#main-footer,
#lower-footer {
    background-color: #0D5189;
}

.issue-block {
    border-radius: 10px !important;
}

#mobile-menu {
    display: none;
}

#jmenu {
    display: block;
}

.accessibilityDesign {
    background: #609513;
    border: 1px solid grey;
    float: left;
    color: #fff !important;
    margin: 15px 0 15px 0px;
}

.textSize,
.textBg {
    float: left;
    padding: 10px;
}

.textSize {
    border-right: 2px solid grey;
}

.font-small {
    font-size: 12px;
}

/* Right-column boxed link styles (moved from inline in index.blade.php) */
.right-links .links {
    padding-left: 0;
    margin: 12px 0 8px 0;
    list-style: none;
}

.right-links .links .link-item {
    list-style: none;
    margin-bottom: 8px;
    border-bottom: none;
}

.right-links .link-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    color: inherit;
    text-decoration: none;
    background: #fff;
    transition: background .18s ease, color .18s ease, transform .06s ease;
}

.right-links .link-text {
    overflow: visible;
    text-overflow: initial;
    white-space: normal;
    display: block;
    word-break: break-word;
}

.right-links .link-arrow {
    color: #676f7e;
    margin-left: 10px;
}

/* Hover state (box and "All") */
.right-links .link-box:hover,
.right-links .btn-all-box:hover {
    background: #008532 !important;
    color: #fff !important;
    border-color: #008532 !important;
}

.right-links .btn-all-box {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #008532;
    background: transparent;
    color: #008532;
    text-align: center;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
    margin: 8px 12px;
}

.right-links .link-box:hover .link-arrow i,
.right-links .btn-all-box:hover i {
    color: #fff;
}

/* Ensure these rules override older/global link list rules */
.right-links ul.links li {
    border-bottom: none;
}

/* Emergency hotline list styling */
.emergency-list-container {
    padding: 12px;
    background: #fff;
    /* parent card stays white */
}

.emergency-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.emergency-item {
    margin-bottom: 8px;
    width: 100%;
}

/* Make the entire item a clickable link and style that link as the box */
.emergency-link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid #dddddd;
    /* visible light border */
    border-radius: 6px;
    background: #f5fbf7;
    /* item background */
    color: inherit;
    text-decoration: none;
}

.emergency-link .emergency-title {
    text-align: left;
    color: #222;
}

.emergency-link .emergency-number {
    text-align: right;
    color: #c82333;
    /* bootstrap danger-like red */
    font-weight: 700;
}

/* hide extra items by default; JS will toggle the .expanded class on container */
.emergency-list .extra {
    display: none;
}

.emergency-list-container.expanded .emergency-list .extra {
    /* show extra items stacked full-width */
    display: block;
}

/* Button like the 'All' box but smaller for this section */
.emergency-toggle-btn {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #008532;
    background: transparent;
    color: #008532;
    text-decoration: none;
    cursor: pointer;
}


.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.font-medium {
    font-size: 18px;
}

.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.font-large {
    font-size: 25px;
}

.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.textSize,
.textBg {
    float: left;
    padding: 10px;
}

.color-1 {
    background-color: #fff;
    color: #000;
}

.color-1,
.color-2,
.color-3,
.color-4 {
    font-size: 12px;
    border: 1px solid grey;
}

.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.color-2 {
    background-color: #cfe5fc;
    color: #21205f;
}

.color-1,
.color-2,
.color-3,
.color-4 {
    font-size: 12px;
    border: 1px solid grey;
}

.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.color-3 {
    background-color: #2f2f2f;
    color: #ffff00;
}

.color-1,
.color-2,
.color-3,
.color-4 {
    font-size: 12px;
    border: 1px solid grey;
}

.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.color-4 {
    background-color: #f7f3d6;
    color: #000066;
}

.color-1,
.color-2,
.color-3,
.color-4 {
    font-size: 12px;
    border: 1px solid grey;
}

.font-small,
.font-medium,
.font-large,
.color-1,
.color-2,
.color-3,
.color-4 {
    cursor: pointer;
    padding: 5px 10px;
}

.share-buttons {
    text-align: center;
    margin-top: 20px;
}

.share-buttons a,
.share-buttons button {
    display: inline-block;
    margin: 0 2px;
}


.share-buttons button,
.share-button {
    color: #fff !important;
    padding: 5px 5px 5px 8px;
    font-size: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.6s ease;
    cursor: pointer;
}

.share-button:hover {
    transform: translateY(-8px);
}

.facebook {
    background-color: #303F9E;
}

.twitter {
    background-color: #3675AE;
}

.whatsapp {
    background-color: #6FBE3C;
}

.linkedin {
    background-color: #3874B2;
}

.vider {
    background-color: #9D1BC0;
}

.copy-link {
    background-color: #4FB2E2;
}

.messanger {
    background-color: #BF3DC8;
}

.share-title {
    font-family: Hind Siliguri !important;
    color: #662D91;
    font-size: 17px;
    text-align: left;
}

body {
    font-family: 'KalpurushRegular', sans-serif !important;
}

.emergency-number {
    display: inline-block;
}

.emergency-number a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.emergency-number a:visited {
    color: inherit;
}

.meganizr,
.meganizr ul,
.meganizr li,
.meganizr a,
.meganizr img,
.meganizr div,
.meganizr p,
.meganizr form,
.meganizr input,
.meganizr textarea,
.meganizr h3,
.meganizr h4,
.meganizr h5 {
    font-family: 'KalpurushRegular', sans-serif !important;
}


.search-btn {
    border: 1px solid #34740e;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 12px;
    font-family: arial, helvetica, sans-serif;
    padding: 0 5px;
    text-decoration: none;
    display: inline-block;
    margin: 0 2px 0 5px;
    color: #ffffff !important;
    background-color: #4ba614;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#4ba614), to(#008c00));
    background-image: -webkit-linear-gradient(top, #4ba614, #008c00);
    background-image: -moz-linear-gradient(top, #4ba614, #008c00);
    background-image: -ms-linear-gradient(top, #4ba614, #008c00);
    background-image: -o-linear-gradient(top, #4ba614, #008c00);
    background-image: linear-gradient(to bottom, #4ba614, #008c00);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#4ba614, endColorstr=#008c00);
}

.search-btn:hover {
    border: 1px solid #34740e;
    color: #ffffff !important;
    background-color: #4ba614;
}

#lang_form button {
    background-color: mediumpurple;
    color: #fff;
    text-shadow: none;
}

.meganizr>li {
    height: 48px !important;
}

.mzr-links {
    margin-top: 10px !important;
    font-size: 17px !important;
}

.mzr-content.drop-one-columns {
    margin-top: 11px !important;
}

.meganizr>li>a {
    padding: 11px 12px 11px 12px;
}

.mzr-links a {
    padding-left: 8px !important;
}

.lan-button {
    /* background: #A289D4; */
    /* padding: 2px 10px 2px; */
    color: #fff;
    font-weight: 700;
    /* box-shadow: 0px 0px 3px 2px #fff; */
    margin-right: 15px;
    top: 5px;
    margin-top: 48px;
    font-size: 13px;
    border-radius: 5px;
    margin-left: 10px;
}

#notice-board-ticker ul li,
.category-box ul li {
    list-style: none;
}

#notice-board-ticker li {
    margin-bottom: 5px;
}

#notice-board-ticker li,
.service-box li,
.category-box li {
    background: url(/website/images/bullet_tick.png) no-repeat center left;
    padding-left: 20px;
}

.carousel-caption {
    bottom: 0rem;
    left: 0;
    right: 0;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
}

.carousel-caption p {
    margin: 0;
    color: white;
}

.right-links ul li {
    background: url(/website/images/bg_block_list.png) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
    font-size: 14px;
    height: auto;
    list-style-type: none;
    margin-bottom: 5px;
    padding-left: 25px;
    padding-top: 0px;
    background-position: left;
}

.right-links1 ul li {
    background: none !important;
    font-size: 14px;
    height: auto;
    list-style-type: none;
    margin-bottom: 5px;
    padding-left: 11px !important;
    padding-top: 0px;
    background-position: left;
}

.right-links ul li {
    border-bottom: 1px solid transparent;
    border-image: linear-gradient(to right, #683091 0%, #8bc643 100%);
    border-image-slice: 1;
}

.issue-block {
    border-radius: 10px !important;
}

.issue-block {
    /* background: #f5f5f5; */
    border: 1px solid #ccc;
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-top: 9px;
    text-align: left;
    /* box-shadow: 1px 1px 1px 2px #ccc; */
    font-family: kalpurushregular !important;
}

.issue-content {
    padding: 13px 15px;
}

.ql-align-center {
    text-align: center !important;
}

.ql-align-right {
    text-align: right !important;
}

.ql-align-justify {
    text-align: justify !important;
}

.pagination {
    display: flex;
    justify-content: center;
}

.announce-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.announce-overlay img {
    max-width: 80vw;
    max-height: 70vh;
}

@media (max-width: 767px) {
    .announce-overlay iframe {
        min-width: 50vw;
        min-height: 50vh;

        max-width: 80vw;
        max-height: 70vh;
    }
}

.content-container {
    height: 100%;
}

.close-button {
    position: absolute;
    top: -20px;
    right: -16px;
    padding: 0px;
    background-color: transparent;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.close-button i {
    font-size: 35px;
    color: red;
    background-color: transparent;
}



@media (max-width: 768px) {
    #hero {
        height: 55vh !important;
        margin-top: 72px !important;
    }

    .welcome-video {
        margin-top: 30px;
    }
}

.overlay1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    /* Ensure it's on top of other elements */
}

.play-button {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: #fffc;
    text-decoration: none;
    transition: color .3s ease;
}

.fixed-logo p {
    display: inline;
}

.site-container {
    display: flex;
    max-width: 100%;
}

.site-inner-container {
    width: 500px;
}

@media only screen and (max-width: 768px) {

    .new-menu {
        background-color: #fff;
    }

    .mzr-responsive {
        height: auto !important;
    }

    #mobile-menu {
        display: block;
    }

    .breaking-news ul {
        margin-top: -5px !important;
    }

    #main-menu {
        display: none;
    }

    .fixed-logo {
        left: 2%;
        text-align: center;
        /*        margin-top: 40px !important;*/
        top: 30px;
    }

    .fixed-logo p {
        margin-left: 5px !important;
        display: block;
    }

    .site-container {
        display: block;
        width: 100%;
    }

    .select2-container {
        width: 100% !important;
    }

    .site-inner-container {
        width: 100%;
    }

    .purple-bar {
        height: 168px;
    }

}

.select2-container {
    z-index: 12 !important;
}

.select2-selection__rendered {
    line-height: 25px !important;
}

.select2-container .select2-selection--single {
    height: 25px !important;
}

.select2-selection__arrow {
    height: 25px !important;
}

.service-box {
    overflow: hidden;
}



.select2-container--default .select2-selection--single {
    background-color: #33954D !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent transparent;
}

/* Notice board specific styles */
.notice-entry {
    padding: 10px 0;
}

.notice-dot {
    width: 12px;
    height: 12px;
    background: #17A249;
    border-radius: 50%;
    flex: 0 0 12px;
    margin-top: 6px;
}

.notice-title a {
    color: inherit;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.notice-meta {
    margin-top: 6px;
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-meta .bi {
    color: #17A249;
}

.notice-new-badge {
    background: #DC3545;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 8px;
}

.notice-hr {
    border: 0;
    border-top: 1px solid gray;
    margin: 0;
}

/* New primary menu styles */
.menu-primary {
    background-color: #01A63E;
    padding: 0;
    margin: 0;
}

.menu-primary-inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 0;
    width: 100%;
    /* no overflow:hidden — needed so dropdowns can escape */
}

.menu-primary-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
}

.menu-item {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.menu-item-home {
    padding: 0 12px;
    height: 48px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item-main,
.menu-item-extra {
    padding: 0 12px;
    height: 48px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* extra items hidden until JS decides they fit or user expands */
.menu-item-extra {
    display: none;
}

.menu-item-extra.visible {
    display: flex;
}

/* spacer pushes More button to the far right */
.menu-item-spacer {
    flex: 1 1 auto;
}

.menu-item-more {
    padding: 0 12px;
    height: 48px;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.menu-item-more.hidden {
    display: none;
}

.menu-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
    white-space: nowrap;
}

.menu-link:hover {
    color: #f0f0f0;
}

.dropdown-caret {
    font-size: 10px;
    margin-left: 2px;
}

/* Dropdown menu */
.menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    display: none;
    z-index: 9999;
    flex-direction: row;
}

.menu-item-dropdown:hover .menu-dropdown {
    display: flex;
}

.dropdown-section {
    padding: 10px 14px;
    flex: 1;
    min-width: 150px;
}

.dropdown-section:not(:last-child) {
    border-right: 1px solid #eee;
}

.dropdown-section h6 {
    margin: 0 0 6px 0;
    font-weight: 600;
    font-size: 12px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.dropdown-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-section li {
    margin: 0;
}

.dropdown-section a {
    color: #444;
    text-decoration: none;
    font-size: 14px;
    display: block;
    padding: 5px 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.dropdown-section a:hover {
    color: #01A63E;
}

/* Extra row — hidden until More is clicked */
.menu-extra-row {
    background-color: #01A63E;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: none;
}

.menu-extra-row.active {
    display: block;
}

.menu-extra-row .menu-primary-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    width: 100%;
}

/* items inside extra row are always visible */
.menu-extra-row .menu-item {
    padding: 0 12px;
    height: 44px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.menu-item-less {
    margin-left: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-right: none !important;
    flex-shrink: 0;
}

.menu-more-btn,
.menu-less-btn {
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.menu-more-btn:hover,
.menu-less-btn:hover {
    color: #f0f0f0;
}

.bi-house-door-fill {
    font-size: 20px;
}

#lower-footer {
    background-color: #E0E0E0;
    color: #404040 !important;
}

.opinion-pill-btn {
    background: #00A63E;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    float: right;
    margin-top: 0.5rem;
}

.opinion-pill-btn:hover {
    background: #007f30;
    color: #fff;
}

/* Quill toolbar integration */
#opinionEditorContainer .ql-editor {
    min-height: 150px;
    font-size: 15px;
}