/* Mobile-First Responsive Design */

/* ========== BASE MOBILE STYLES ========== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafcba;
    margin: 0;
    padding: 0;
    color: #1a202c;
    font-size: 16px;
    line-height: 1.6;
}

.clearFloats {
    clear: both;
    font-size: 0px;
    line-height: 0px;
}

/* ========== MOBILE SEARCH FORM ========== */
.home-header {
    width: 95%;
    max-width: 600px;
    margin: 40px auto 60px;
    padding: 0 15px 40px;
    position: relative;
    z-index: 10;
    min-height: auto;
}

.logo {
    text-align: center;
    margin: 0 0 20px 0;
}

.home-header .logo {
    background: #ffffff;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    margin: 0 auto 8px auto;
    display: block;
    text-align: center;
    width: fit-content;
}

.logo img {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    display: block;
}

form.searchform {
    height: auto;
    position: relative;
    margin-top: 0;
    clear: both;
}

.search-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    width: 100%;
}

.search-input-group,
.search-location-group,
.search-button-group {
    width: 100%;
}

.search-location-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-keyword,
.search-location,
.search-radius,
.search-submit {
    width: 100%;
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    padding: 14px 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.search-radius {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

.search-submit {
    font-weight: 600;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
}

.search-keyword:focus,
.search-location:focus,
.search-radius:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 8px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.search-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

/* ========== MOBILE SEARCH HEADER ========== */
.search-header {
    min-height: 100px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    padding: 15px;
    margin: 10px;
    position: relative;
    z-index: 100;
}

.search-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 20px);
    margin: 10px;
    transform: translateZ(0);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 950;
}

.search-header .logo {
    margin-bottom: 10px;
    text-align: center;
    padding: 0;
}

.search-header .logo img {
    max-height: 50px;
}

.search-header form.searchform {
    width: 100%;
}

/* ========== MOBILE CONTENT LAYOUT ========== */
.wrapper.search .content {
    border-top: none;
    background: transparent;
    margin-top: 20px;
}

.content {
    margin: 10px;
    border-radius: 16px;
    background: #ffffff;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    z-index: 1;
}

/* Hide desktop sidebar on mobile */
@media (max-width: 1023px) {
    .sidebar {
        position: absolute;
        left: -9999px;
        visibility: hidden;
        width: 1px;
        height: 1px;
        overflow: hidden;
    }
}

.results {
    width: 100%;
    padding: 10px;
    min-height: auto;
    position: relative;
    z-index: 1;
}

/* ========== MOBILE FILTER TOGGLE ========== */
.mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 20px);
    padding: 14px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 10px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    z-index: 10;
}

.mobile-filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.mobile-filter-toggle::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.mobile-filter-toggle.active::after {
    transform: translateY(-50%) rotate(180deg);
}

/* ========== MOBILE FILTER PANEL ========== */
.mobile-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-filter-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
}

.mobile-filter-panel.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.mobile-filter-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
}

.mobile-filter-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #718096;
    cursor: pointer;
    padding: 5px;
}

/* ========== MOBILE FILTER CHIPS ========== */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px;
}

.chip {
    background: #f1f5f9;
    color: #1a202c;
    border-radius: 20px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.chip button {
    background: none;
    border: none;
    color: #e53e3e;
    font-weight: bold;
    margin-left: 4px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

.chip button:hover {
    color: #c53030;
}

/* ========== MOBILE COMPONENTS (FILTERS) ========== */
.component {
    padding: 16px;
    margin-bottom: 12px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.component h2 {
    font-weight: 700;
    font-size: 16px;
    padding-bottom: 12px;
    margin: 0 0 12px 0;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.component .filterInput {
    padding: 6px 0;
    width: 100%;
}

.component .filterInput span {
    display: block;
    padding: 4px 0;
    color: #4a5568;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.component .filterInput select,
.component .filterInput input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #2d3748;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}

.component .filterInput select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.component .filterInput .button {
    width: 100%;
    margin-top: 8px;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.component .filterInput .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.component .filterInput select:focus,
.component .filterInput input:focus {
    outline: none;
    border-color: #667eea;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1), 0 4px 15px rgba(102, 126, 234, 0.15);
    transform: translateY(-1px);
}

/* ========== MOBILE JOB RESULTS ========== */
.results>a {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: #1a202c;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.results>a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.results>a:hover::before {
    opacity: 1;
}

.results>a:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.results>a h1 {
    font-weight: 700;
    font-size: 18px;
    color: #1a202c;
    margin-bottom: 8px;
    text-decoration: none;
    line-height: 1.4;
}

.results>a:hover h1 {
    color: #667eea;
}

.results>a span {
    color: #16a085;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.results>a span strong {
    color: #1a202c;
    font-weight: 700;
}

.results>a p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.results>a b {
    background: linear-gradient(135deg, #ffd93d 0%, #ff6b35 100%);
    color: #1a202c;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results>a small {
    color: #718096;
    font-size: 12px;
    font-weight: 500;
    display: block;
    margin-top: 8px;
}

.results>a i {
    position: absolute;
    right: 16px;
    top: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-style: normal;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.results>a:hover i {
    transform: scale(1.1) rotate(5deg);
}

.jobLogoContainer {
    margin-right: 16px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.jobLogoContainer img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

.jobLinkText {
    flex-grow: 1;
}

/* ========== MOBILE ERROR STATES ========== */
.error {
    padding: 32px 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 16px;
    margin: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7d7;
}

.error h1 {
    font-size: 24px;
    color: #e53e3e;
    margin-bottom: 20px;
    font-weight: 700;
}

.error ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0 auto;
}

.error ul li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
    color: #4a5568;
}

.error ul li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* ========== MOBILE FOOTER ========== */
.footer {
    padding: 24px 15px;
    font-size: 14px;
    clear: both;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
    margin-top: 20px;
}

.footer .centerContent {
    padding-bottom: 20px;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.footer .disclosure {
    clear: both;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0 0 0;
    width: 100%;
    text-align: center;
}

/* ========== MOBILE LOCATION SELECTOR ========== */
.location-selector {
    position: relative;
    margin: 0 10px;
}

.location-selector .selector {
    display: none;
    position: absolute;
    background: #ffffff;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 200px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
    z-index: 1000;
}

#googleMap0,
#googleMap1 {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ========== AD STYLES ========== */
#adTopParent,
#adBottomParent {
    width: 100%;
    text-align: center;
    margin: 20px 0;
    padding: 10px;
}

#adTop,
#adBottom {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
}

.adsbygoogle {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
}

@media (min-width: 768px) {
    #adTopParent,
    #adBottomParent {
        margin: 24px 0;
        padding: 15px;
    }
}

@media (min-width: 1024px) {
    .adsbygoogle {
        width: 728px !important;
        height: 90px !important;
    }
}

/* ========== TABLET STYLES (768px+) ========== */
@media (min-width: 768px) {
    .home-header {
        width: 80%;
        max-width: 700px;
        margin: 80px auto 80px;
        padding: 0 20px 50px;
    }

    .home-header .logo {
        padding: 20px;
        margin: 0 0 24px 0;
    }

    .logo img {
        max-height: 100px;
    }

    .search-container {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .search-input-group {
        flex: 2;
        min-width: 280px;
    }

    .search-location-group {
        flex: 1.5;
        min-width: 220px;
        flex-direction: row;
    }

    .search-button-group {
        flex: 0 0 auto;
    }

    .search-header {
        min-height: 140px;
        flex-direction: row;
        align-items: center;
        padding: 20px;
        margin: 15px;
    }

    .search-header .logo {
        margin-right: 30px;
        margin-bottom: 0;
        text-align: left;
    }

    .mobile-filter-toggle {
        margin: 15px;
    }

    .results {
        padding: 15px;
    }

    .results>a {
        padding: 24px;
        margin-bottom: 20px;
        border-radius: 18px;
    }

    .results>a h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .results>a span {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .results>a p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .results>a i {
        width: 36px;
        height: 36px;
        right: 20px;
        top: 20px;
        font-size: 15px;
    }

    .jobLogoContainer {
        width: 70px;
        height: 70px;
        margin-right: 20px;
    }

    .component {
        padding: 20px;
        margin-bottom: 16px;
    }

    .component h2 {
        font-size: 18px;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
}

/* ========== DESKTOP STYLES (1024px+) ========== */
@media (min-width: 1024px) {
    .home-header {
        width: 640px;
        max-width: 640px;
        margin: 120px auto 100px;
        padding: 0 20px 60px;
    }

    .home-header .logo {
        padding: 24px;
        margin: 0 0 30px 0;
    }

    .logo img {
        max-height: 120px;
    }

    .search-header {
        min-height: 180px;
        padding: 25px;
        margin: 20px;
        border-radius: 20px;
    }

    .search-header.sticky {
        width: calc(100% - 40px);
        margin: 20px;
    }

    .mobile-filter-toggle {
        display: none;
    }

    .content {
        margin: 20px;
        border-radius: 24px;
        position: relative;
        display: block;
    }

    .sidebar {
        display: block;
        background: #ffffff;
        width: 305px;
        color: #1a202c;
        height: 100%;
        position: absolute;
        bottom: 0px;
        top: 0px;
        padding-top: 1px;
        border-radius: 24px 0 0 24px;
        box-shadow: inset -1px 0 0 #e2e8f0;
        border-right: 1px solid #e2e8f0;
    }

    .results {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
        padding: 20px;
        min-height: 700px;
        float: none;
        margin-left: 320px;
        margin-right: auto;
    }

    .results>a {
        padding: 28px;
        margin-bottom: 24px;
        border-radius: 20px;
        align-items: center;
    }

    .results>a h1 {
        font-size: 22px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .results>a span {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .results>a p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .results>a small {
        font-size: 13px;
        margin-top: 12px;
    }

    .results>a i {
        width: 40px;
        height: 40px;
        right: 24px;
        top: 24px;
        font-size: 16px;
    }

    .jobLogoContainer {
        width: 80px;
        height: 80px;
        margin-right: 24px;
    }

    .component {
        padding: 24px;
        margin-bottom: 16px;
        font-size: 14px;
    }

    .component h2 {
        font-size: 18px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
}

/* ========== LARGE DESKTOP STYLES (1440px+) ========== */
@media (min-width: 1440px) {
    .results>a:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
    }
}

/* ========== UTILITIES ========== */
.toggleSearchByMap {
    padding: 16px;
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.toggleSearchByMap:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #ffffff;
    margin: 15% auto;
    padding: 32px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .modal-content {
        padding: 48px;
        width: 60%;
        margin: 10% auto;
    }
}

/* Pagination */
.pagination {
    padding: 20px 15px;
    text-align: center;
}

.pagination a {
    padding: 8px 12px;
    margin: 0 2px;
    font-size: 12px;
    text-decoration: none;
    color: #667eea;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: #667eea;
    color: white;
}

.pagination a.curPage {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

@media (min-width: 768px) {
    .pagination {
        padding: 24px 15px;
    }

    .pagination a {
        padding: 10px 16px;
        margin: 0 4px;
        font-size: 13px;
    }
}

/* Additional legacy support */
.input {
    margin: 20px 10px 10px 10px;
    position: relative;
    z-index: 1;
}

.input .text {
    font-size: 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    padding: 14px 18px;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
}

.input .text:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 8px 30px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.input .button {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.input .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

@media (min-width: 1024px) {
    .input {
        margin: 20px 20px 10px 20px;
    }

    .input .text {
        font-size: 18px;
        padding: 16px 20px;
        width: 430px;
        height: 25px;
    }

    .input .button {
        padding: 16px 32px;
        height: auto;
    }
}

/* Add spacing when sticky header is active */
body.sticky-active .content {
    margin-top: 140px;
}

body.sticky-active .mobile-filter-toggle {
    margin-top: 140px;
}

body.sticky-active .chip-container {
    margin-top: 140px;
}

/* Ensure mobile filter toggle is visible on mobile */
@media (max-width: 1023px) {
    .mobile-filter-toggle {
        display: flex !important;
    }

    /* Ensure the toggle button is properly positioned */
    .mobile-filter-toggle:first-child {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    .home-header {
        margin: 150px auto 120px;
        padding: 0 20px 80px;
    }

    .logo img {
        max-height: 140px;
    }
}
