/*Search page body */
body {
    /*background-image: url('bgimage.png');*/
    background-size: cover;
	background-repeat: no-repeat;
	background-color: #ffffff;
    font-family:arial,helvetica;
    font-size: 14px;
	color: #000000;
}

@media (prefers-color-scheme: dark) {
	body {
		background-color: #000000;
		color: #FFF;
		/* background-image: url('bgimage.png'); */
	}
}

/* Default (light mode) */
#logo {
    filter: invert(0); /* Black in light mode */
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    #logo {
        filter: invert(1); /* White in dark mode */
    }
}


.disable-right-click {
    pointer-events: none
}

.protected-image {
    pointer-events: none
    user-select: none
}

/*Top categories*/
.main_cat1 {
    font-size: 16px;
    font-weight: bold;
    color:#0000FF;
}

.main_cat2 {
    font-size: 12px;
    font-weight: bold;\
    color:#0000FF;
}

.cat1:visited {
    font-size: 16px;
    font-weight: bold;
    color:#5555AA;
}

/* Most searched keywords people look */
:root {
    --text-color-light: #000000;
    --text-color-dark: #ffffff;
}

.mskeywords {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    display: inline;
    color: var(--text-color-light);

    @media (prefers-color-scheme: dark) {
        color: var(--text-color-dark);
    }
}
.mskeywords.bold {
	font-weight: bold;
}

.mskeywords:hover {
	color:#FF671F;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-decoration: none;
	display: inline;
}
.zskeywords {
	border:1px solid #ccc; 
	border-radius:10px 10px; 
	padding: 5px 5px;
}
.zskeywords:hover {
	background-color: none; 
	}

.searchBox {
    border:1px solid #113377;
	
}

#result_report {
    
	width: 50%;
	border: 0px solid black;
	text-align:left;
    padding:3px;
    font-weight:none;
    margin-bottom:14px;
	/*margin-top:50px;*/
	margin-left:150px;
	margin-right: auto;
	background-color: transparent;
}

.catBanner {
    padding:3px;
    margin-top:15px;
    background-color:#e5ecf9;
    font-weight: bold
}

.webPageBanner {
    padding:3px;
    margin-top:20px;
    background-color:#e5ecf9;
    font-weight: bold
}

hr {
    color:#000066;
}

hr.powered {
    width:550;
    color: #000066;
}

/* URL styling - this replaces the .url-line class which isn't used */
.url {
    color: #599e2d;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 8px; /* Added consistent spacing */
}

.url a {
    color: #599e2d !important;
    text-decoration: none !important;
}

.url a:hover {
    text-decoration: none !important;
}

/*Page descriptions*/
.description {
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

/* Title link of pages 
.title {
    --color: #5252f0;
    color: #1368e5;
    cursor: pointer;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
} */

/* Title link of pages - Fixed version */
.title {
    color: #1368e5;
    cursor: pointer;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%; /* Critical for ellipsis to work */
}

.title a {
    color: #1368e5 !important;
    text-decoration: none !important;
}

.title a:hover {
    color: #FF671F !important;
    text-decoration: underline !important;
}

.title a:visited {
  color: #723a93 !important;
}


/*main results table
#results, #r_results, #i_results {
    width: 650px;
    border: 0;
    margin-left: 150px;
    text-align: justify;
    padding-right: 50px;
    box-sizing: content-box;
    border-right: 0 solid #e1e1e1;
    overflow: hidden;
    line-height: 28px;
}*/


/* Main container for the entire page content */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flex container for results - base styles */
.results-container {
    display: flex;
    gap: 20px;
    width: 100%;
    margin: 0 auto;
    max-width: 1200px; /* Match page container width */
    padding: 0;
}

/* Left column styling - base styles */
.results-left {
    flex: 1;
    min-width: 0;
}

/* Right column styling - base styles */
.results-right {
    flex: 0 0 350px;
    min-width: 0;
    max-width: 400px;
    padding-left: 20px;
}

/* Main results table - Desktop/Laptop mode */
#results, #r_results, #i_results {
    width: 100%; /* Changed from fixed width to flex-based */
    border: 0;
    margin: 0 150px;
    max-width: 650px; /* Maintains your original width */
    text-align: justify;
    padding: 0 50px 0 0; /* Adjusted for flex layout */
    box-sizing: border-box;
    border-right: 0 solid #e1e1e1;
    overflow: hidden;
    line-height: 28px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1023px) {
    .results-container {
        flex-direction: column; /* Stack columns vertically */
    }

    .results-right {
        display: none; /* Hide right column */
        width: 100%; /* Full width when shown */
    }

    #results, #r_results, #i_results {
        width: 100%;
        margin: 0;
        padding: 0;
        max-width: none; /* Remove max-width constraint */
    }
}

/* Favicon container with circular background */
.favicon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #f1f3f4;
    border-radius: 50%;
    border: 1px solid #dfe1e3;
    margin-right: 12px;
    vertical-align: middle;
    flex-shrink: 0;
}

.favicon-container img {
    width: 20px;
    height: 20px;
}
/* Result block title line styling
.title_line {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
} */

/* Result block title line styling - Updated */
.title_line {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 18px;
    width: 100%; /* Ensure it takes full available width */
    min-width: 0; /* Allows flex children to shrink */
}

/* Website name styling */
.title_line .website-name {
    font-weight: normal;
	color: #6C6C6C;
}

/* Domain name styling */
.title_line .domain-name {
   margin-left: 0;
   font-weight: normal;
   color: #6C6C6C;
}

/* Site name styling */
.site-name {
    font-weight: bold;
    color: #000;
    margin-left: 5px;
    font-size: 14px;
}


/* Remove default link styling from result blocks */
.result-block a {
    text-decoration: none !important;
    color: inherit !important;
}

.result-block a:hover {
    text-decoration: underline !important;
}

.pagination {
    text-align: left;
    margin-left: 150px;
    width: 650px;
    display: flex;
    margin-top: 30px;
    border: 0px solid #cccccc;
}

.clear {
    clear: both;
    text-align: center;
    width: 650px;
    display: flex;
    margin-left: 150px;
}

:root {
    --border-color: #cccccc;
    --hover-border-color: #FF671F;
    --hover-bg-color: #FF671F;
    --text-color: #000000;
    --active-text-color: #FF671F;
}

@media (prefers-color-scheme: dark) {
    :root {
        --border-color: #555555;
        --hover-border-color: #FF671F;
        --hover-bg-color: #FF671F;
        --text-color: #ffffff;
        --active-text-color: #FF671F;
    }
}

#other_pages a {
    padding: 3px 10px 3px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    margin: 0 4px;
    color: var(--text-color);
    display: inline-block; /* Changed from initial to inline-block */
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.5; /* Added for better vertical alignment */
}

#other_pages a:hover {
    padding: 3px 10px 3px;
    border-radius: 5px;
    border: 1px solid var(--hover-border-color);
    margin: 0 4px;
    background-color: var(--hover-bg-color);
    color: var(--text-color);
    display: inline-block;
    text-decoration: none;
    line-height: 1.5;
    cursor: pointer; /* Added to indicate clickable area */
}

#other_pages b {
    padding: 3px 10px 3px;
    border-radius: 5px;
    border: 1px solid var(--hover-border-color);
    margin: 0 4px;
    color: var(--active-text-color);
    display: inline-block;
    text-decoration: none;
    line-height: 1.5;
}


#powered_by {
    margin:0 auto;
    margin-top:20px;
    padding-top:10px;
    font-size:10px;
    text-align:center;
    vertical-align: center;
}

#common_report {
    text-align:left;
	margin-left:150px;
	padding-bottom:10px;
}

#cat_table {
    width:600px;
    margin-top:20px;
    padding-top:10px;
    padding-bottom:20px;
    border-top:1px solid #AAAAAA;
    border-bottom:1px solid #AAAAAA;
}

#cat_main {
    font-weight: bold;
}

.divline{
    margin-top:20px;
    margin-bottom:-5px;
    border-bottom:1px solid #DDDDDD;
}

#sub_cat {
    font-size:12px;
}

.idented {
    margin-left:30px;
}

#did_you_mean {
    font-size: 14px;
    text-align:left;
    margin:5px;
	margin-left:150px;
}

/* CSS data for autocomplete suggest keywords */
#keyword {
    position: relative;
    width: 600px;
    height: 33px;
    font-size: 15px;
    border-radius: 5px;
    margin-left: 50px;
    border: 1px solid #ddd;
    padding: 0 15px;
}

#keyword:focus {
    border-color: #FF671F;
}


/* Base styles for the dropdown */
#sresults {
    display: none;
    position: absolute;
    left: 170px; /* Aligns with input field */
    top: calc(68% + 2px); /* Positions directly below input */
    border: 0px solid #FF671F;
    border-top: none;
    z-index: 1000;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: auto;
    transition: all 0.3s ease;
}

/* Light Mode */
#sresults {
    background-color: #ffffff;
    width: calc(100% - 170px); /* Adjusts to fill available space */
    max-width: 640px; /* Maximum width */
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    #sresults {
        background-color: #202124;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
}

/* Item styles (unchanged) */
#sresults .item {
    padding: 8px 15px;
    font-family: Arial, Helvetica;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
    cursor: pointer;
}

#sresults .item:last-child {
    border-bottom: 0;
}

/* Light Mode - Item styles */
#sresults .item {
    color: #3c4043;
    border-bottom-color: #f0f0f0;
}

#sresults .item:hover {
    background-color: #f8f9fa;
}

/* Dark Mode - Item styles */
@media (prefers-color-scheme: dark) {
    #sresults .item {
        color: #e8eaed;
        border-bottom-color: #3c4043;
    }

    #sresults .item:hover {
        background-color: #2d2d2d;
    }
}


/* Modern search icon using SVG in CSS */
#sresults .item::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF671F' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

/* Auto submit the suggest keyword in searchbox */
#sresults .item.selected {
    background-color: #f0f7ff !important;
    color: #0066cc !important;
    font-weight: bold !important;
    outline: 2px solid #0066cc !important;
    outline-offset: -2px;
}

#sresults .item.selected::after {
    content: "→";
    margin-left: auto;
    color: #FF671F;
    font-size: 16px;
}

/* Keyboard navigation support */
#sresults .item:focus {
    background-color: #f0f7ff;
    color: #0066cc;
    font-weight: bold;
}

/* Ensure the selected item is always visible in the container */
#sresults {
    overflow-y: auto;
    max-height: 300px; /* Adjust as needed */
}

.box {
    display: none;
    width:100%;
}

a:hover + .box, .box:hover {
    display:block;
    position:relative;
    z-index: 100;
}

#search_master {
    padding:0;
    margin: 25px 25px;
    width:100%;
}

#main {
    text-align: left;
    border: none;
    clear: both;
    width: 100%;
    margin-top: -1px;
}

#tabs {
    font-family: Arial;
    font-size: 12px;
    clear: both;
    text-align: center;
    position: absolute;
    margin-left: -550px;
}

#tabs ul {
    display: inline;
    list-style-type: none;
    margin: 0;
}

#tabs li {
    float: left;
    height: 26px;
}

#tabs a {
    width: 60px;
	border-radius: 8px 8px;
}

#tabs a.selected {
    position: relative;
    top: 0px;
    margin: 0 2px 0 0;
    float: left;
    background: #fbfbfb;
    border-right: 0px solid #666;
    border-top: 0px solid #666;
    border-left: 0px solid #666;
    border-bottom: 0px solid #666;
    padding: 6px 4px 6px 10px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

#tabs a.default {
    position: relative;
    top: 0;
    margin: 2px 2px 0 0;
    float: left;
    border-right: 0px solid #AAA;
    border-top: 0px solid #AAA;
    border-left: 0px solid #AAA;
    border-bottom: 0px solid #AAA;
    padding: 5px 4px 5px 10px;
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

#tabs a:hover {
    background: #eee;
    position: relative;
    top: 0;
    padding: 5px 4px 6px 10px;
    margin-top: 0px;
}

#tabs a.active {
    position: relative;
    top: 0;
    margin: 0 2px 0 0;
    float: left;
    background: #EEE;
    border-right: 1px solid #666;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: 6px 4px 6px 10px;
    text-decoration: none;
    color: #333;
}

#tabs a.active:hover {
    position: relative;
    top: 0;
    margin: 0 2px 0 0;
    float: left;
    border-right: 1px solid #666;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: 6px 4px 6px 10px;
    text-decoration: none;
    color: #333;
}
/* Existing container styles */
.container {
    width: 100%;
    z-index: 9999;
    position: relative;
    top: 0;
    background: transparent;
    border-bottom: 1px solid #e1e1e1;
    margin-left: 0px;
    margin-right: 300px;
    padding-left: 5px;
    text-align: left;
    margin-top: 20px;
}

.bottom_container {
    padding-left: 5px;
}

.advanced {
    display: -webkit-box;
    width: 80%;
    margin-left: 150px;
}

/* Existing head styles */
#head .landing {
    background-color: #fff;
    background-image: none;
    border: 1.5px solid #FF671F;
    border-radius: 20px 20px 20px 20px;
    box-sizing: border-box;
    display: inline-block;
    height: 46px;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 1px 1px;
    line-height: 1.3333333;
    position: sticky;
    margin-left: 0;
    box-shadow: 0 1px 1px 3px #eee;
}
#suggest-align {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

#head .round {
    background: transparent;
    border: 1.5px solid #FF671F;
    border-radius: 20px 20px 20px 20px;
    box-sizing: border-box;
    display: inline-block;
    height: 45px;
    position: sticky;
    vertical-align: 20px;
    width: 650px;
    margin-left: 30px;
    top: 0;
    --box-shadow: 0 1px 1px 1px #c5c5c5;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

#head .input_key {
    -webkit-appearance: none;
    background: #fff;
    border: 0px solid #000;
    border-radius: 20px 20px 20px 20px;
    font: 16px/24px arial;
    height: 40px;
    margin: 1px 0 0 1px;
    outline: 0;
    padding: 0px 4px 0px 40px;
    position: relative;
    width: 92%;
    z-index: 1;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
    background: transparent;
    border: none;
    height: 100%;
    margin: 0;
    padding: 0 40px 0 15px;
    width: 100%;
    z-index: 1;
}

#head .input_key::placeholder {
    color: #999;
    opacity: 0.8;
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    #head .round {
        border-color: #FF671F;
    }

    #head .input_key {
        background-color: none;
        color: #ffffff;
    }

    #head .input_key::placeholder {
        color: #999;
        opacity: 0.6;
    }
}

#head .modern-search-form {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}



/* Existing button styles */
#head .s_btn:hover {
    --background: #FF671F;
    border: none;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

#head .s_btn {
    -webkit-appearance: none;
   background: none;
    border-radius: 0px;
    border: 0;
    color: #FF671F;
    cursor: pointer;
    font-size: 17px;
	width: auto;
    height: auto;
    letter-spacing: 1.02px;
    outline: none;
    overflow: hidden;
    vertical-align: 20px;
    top: 0;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}


/* New clear button style */
#head .clear-btn {
    background: none;
    border: none;
    cursor: pointer;
    height: 100%;
    padding: 0 2px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #FF671F;
    transition: background-color 0.2s;
}

#head .clear-btn:hover {
    --background-color: rgba(255, 103, 31, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        margin-right: 0;
    }

    #head .round {
        width: calc(100% - 55px);
        margin-left: 15px;
    }

    #head .input_key {
        padding-left: 10px;
        padding-right: 40px;
    }
}

/* JavaScript toggle for clear button */
#head .input_key:not(:placeholder-shown) ~ .clear-btn {
    display: flex;
}

.row {
    width: 100%;
    display: table;
}


.row::after {
    content: "";
    clear: both;
    display: table;
}

$head .left, .right {
    display: contents;
    width:60%;
	border:1px solid #000;
}



/* The dropdown navigation menu */
/* Base dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Button styling */
.dropbtn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px 12px;
    color: #5f6368;
    font-size: 16px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropbtn:hover {
    background-color: rgba(95, 99, 104, 0.1);
    color: #202124;
}

.dropbtn i {
    transition: transform 0.2s ease;
}

/* Responsive hiding - show only on desktop/laptop */
@media (max-width: 768px) {
    .dropbtn {
        display: none !important;
    }
}


.dropdown:hover .dropbtn i {
    transform: rotate(90deg);
}

/* Dropdown content styles - FIXED POSITIONING */
.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    background-color: #fff;
    min-width: 220px;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 8px 0;
    z-index: 1000;
    overflow: hidden;
    animation: fadeIn 0.2s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Menu items */
.menu-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #3c4043;
    text-decoration: none;
    transition: background-color 0.1s;
    border-radius: 8px;
    margin: 0 8px;
}

.menu-item:hover {
    background-color: #f1f3f4;
}

.menu-item i {
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* App grid layout */
.sub-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.1s;
    color: #5f6368;
    text-decoration: none;
}

.app-item:hover {
    background-color: #f1f3f4;
}

.app-item i {
    font-size: 20px;
    margin-bottom: 4px;
}

.app-item span {
    font-size: 12px;
    text-align: center;
}

/* Divider */
.divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 8px 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        right: 10px;
        left: 10px !important;
        min-width: auto;
        top: calc(100% + 6px);
    }

    .sub-menu {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dark mode styles */
@media (prefers-color-scheme: dark) {
    .dropbtn {
        color: #e8eaed;
    }

    .dropbtn:hover {
        background-color: rgba(232, 234, 237, 0.1);
        color: #ffffff;
    }

    .dropdown-content {
        background-color: #202124;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .menu-item {
        color: #e8eaed;
    }

    .menu-item:hover {
        background-color: rgba(232, 234, 237, 0.1);
    }

    .app-item {
        color: #9aa0a6;
    }

    .app-item:hover {
        background-color: rgba(232, 234, 237, 0.1);
    }

    .divider {
        background-color: #3c4043;
    }
}


.header-menu {		
transition: background-color 0.1s, color 0.1s;
-webkit-tap-highlight-color: rgba(0,0,0,0);
appearance: none;
background: transparent;
border: none;
border-radius: none;
color: black;
cursor: pointer;
display: flex;
padding: 9px;
float: right;
margin-top: 6px;
line-height: 20px;
}
.header-menu:hover {
  background: #eee;
  color: #000;
}

 /* The side navigation menu */
.sidenav {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  right: 0;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff; /* Black*/
 border: 2px solid #ccc;
 overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
 transition: width 0.5s ease-in-out; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
  padding: 8px 8px 8px 22px;
  text-decoration: none;
  font-size: 14px;
  font-family: Arial, Sans-serif;
  color: #818181;
  display: block;
  transition: width 0.5s ease-in-out;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #000;
}

.sidenav.open {
	width: 280px; /* Or your desired width */
	}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 30px;
  margin-left: 50px;
}

/* Modern Side Navigation Content */
.nav-menu-theme {
  padding-top: 0;
  margin: 0;
  padding: 0;
  max-width: 300px;
  padding-bottom: 0;
  list-style-type: none;
}

/* Enhanced Menu Heading - Bolder and Darker */
.nav-menu-heading {
  position: relative;
  font-size: 14px;
  color: #212529; /* Darker color */
  font-weight: 700; /* Bolder weight */
  padding: 0.5rem 1.5rem; /* Reduced vertical padding */
  text-transform: normal;
  background-color: #f5f5f5;
  letter-spacing: 0.05em;
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Enhanced Menu Items - Reduced line spacing and larger font */
.nav-menu-item {
  position: relative;
  font-size: 16px; /* Increased font size */
  color: #212529;
  padding: 0.4rem 0.5rem; /* Reduced vertical padding */
  transition: all 0.2s ease;
  display: block;
  line-height: 0.5; /* Tighter line spacing */
}

.nav-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #0d6efd;
}

/* Modern Section Box */
.section-box {
  flex-basis: 672px;
  max-width: 672px;
  flex: 0 0 590px;
}

/* Modern Button */
.section-box-button {
  background-color: #ff6b35;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.section-box-button:hover {
  background-color: #e55a2b;
}

/* Responsive Adjustments */
@media screen and (max-height: 450px) {
  .nav-menu-heading {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .nav-menu-item {
    font-size: 14px;
    padding: 0.3rem 1rem;
  }
}

.favicon-wrapper.svelte-on1hvy {
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 5px 5px;
  display: inline-flex;
  height: 20px;
  width: 20px;
  padding: none;
  justify-content: center;
  min-width: 20px;
  position: relative;
  margin: 0 6px 0 0;
}
.favicon-wrapper.svelte-on1hvy:hover {
  align-items: center;
  background-color: #ffecc5;
  border-radius: 5px 5px;
  display: inline-flex;
  height: 20px;
  width: 20px;
  padding: none;
  justify-content: center;
  min-width: 20px;
  position: relative;
  margin: 0 6px 0 0;
}
.favicon-background-wrapper.svelte-on1hvy {
  align-items: center;
  border-radius: 1px 1px;
  display: flex;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  position: absolute;
}
.favicon-background.svelte-on1hvy {
  filter: blur(10px);
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: .35;
  width: 20px;
}
.site-name-wrapper.svelte-on1hvy img.favicon {
  --size: 1.1rem;
  border-radius: var(--border-radius-s);
}
.favicon.error.svelte-w2a9kc {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAADW0lEQVR4nO1ZS08UQRD+wE10QRNhfURYveoZRPgDejRRN+BJb2i8cfGBN7I8jiAQozc1ioIYIpqYeOQPyEKMV0AjgsvJB+smjmlTm1QqPT3dsyMzJvsllUD3V9XVPV3V3bVADTXUEAXqAXQB6AcwC2AZwBaAXyRb1PYcwC0AnaQTO7IAhgF8BOA5yhqAIQCtcTieAXAXQCmE41K2AUwCaN4p5y8C+BrgVBnAAK1ulv4uB+hsAuj+l46naNXlwO8AvGT///ZxpJv6Kjyls6ixN0FjRYo0gHkx0AqAcwD2AvjE2tW+9sMw4ykdpXuB4sETk1NjRoKUxvl5igOFPtaugrnBYKtRTLaP2g8AeKWZRCRfQm6bQQB1rH+J9fVa2Otl/CXWXie+kJLxKAKWGxwV/e2s7xttiSDsA/Cd6bWL/jtizFxY5zMi20yJlQdll0r/YwfbU0xvQPSpMZ6x/g0ATdVunc8+eXqBcS452L7M9BY0/c00ZuitlBWH1HkNp0FwlI4tWpleiYJb4qw47JxObBlMSZBBW+fVJWs1AQ57QlSK3mUzga4EOOv5yCmbCdxmCg8MvPuMdwXuUDoV/XsG3kPGu2Fj+IWlY28Z77S7/zjD9N8YeFcZb8bG8LLhkOH4wHjH3f3HCab/3sA7yXgFG8NFpmBKXRuMd9Ddfxxi+usG3lFx5Q4Ez+2mG+E24+129/+vjkeibPkhbcnb8QnsYfo/DLxG1wkULU/XarfQYaavrg1+OOa6hXgQqwCKO4g7XIN4limoFBZ3Gr3GeNM2hvuZgjpE4j7IHjHedRvDnQm4Mng+YtrSib/MrbhU84YS4LAnJA8HZEWeV6WPuB80LXDEZIxPygxdLyqcMVfnK0Y2mZGnAY/6JxE+6qdZ/5ewj/pKOdAzrESbKKuokolrWaUtoKyie487YUIYHBJfolBFYavA2pXNkYA6VCikRPE2qLSoC0ib0uJrMcac7RvYBmnNJNYoO8nirqpo+GFEU9zNaX4gmYuyuMu/xLgmPy9qyus9Gv0eTXm9oLE3FuXK65CjzGA6dMp08GRJ8hY/cKxHEbC2aKKvwQ+7sPKTVn0/YkALVcxWQ95t8gCOIAGop6LTTSp9FOhlVyIpUqzMUG2nIyk/s9ZQA/5z/AEFdMY6cMDT4gAAAABJRU5ErkJggg==);
  padding: 1px;
}
img.favicon.svelte-w2a9kc {
  border-radius: var(--border-radius-xs);
  display: inline-block;
  flex-shrink: 0;
  height: var(--size);
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: var(--size);
}
.size-s.svelte-w2a9kc {
  --size: var(--icon-s);
}


/* Right column section in search results page*/
.right-column-section {
    margin-bottom: 20px;
}

.right-column-section h3 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.right-column-section-content {
    border: 1px solid #ddd;
    padding: 10px;
    min-height: 100px;
    background: #f9f9f9;
}

/* Links section */
.right-column-links ul {
    margin: 0;
    padding-left: 20px;
}

.right-column-links li {
    margin-bottom: 5px;
}
