.searchBar form input[type="text"] {
    width: 100%;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 5px;
    background-color: rgb(0 0 0 / 43%) !important;
    backdrop-filter: blur(10px);
    padding: 5px 35px 5px 35px;
    outline: none;
    color: var(--text-color);
    vertical-align: middle;
    margin-right: 10px;
    transition: .3s;
}

        .backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
            box-sizing: border-box;
        }
        
        .modal1 {
            background-color: white;
            border-radius: 12px;
            max-width: 760px;
            width: 100%;
            max-height: 90vh;
            padding: 28px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .close-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            cursor: pointer;
            color: #888;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            z-index: 2;
        }
        
        .close-btn:hover {
            background-color: #f5f5f5;
            color: #333;
        }
        
        .popup-content {
            line-height: 1.5;
            color: #333;
            overflow-y: auto;
            padding-right: 5px;
        }
        
        /* Custom scrollbar for webkit browsers */
        .popup-content::-webkit-scrollbar {
            width: 6px;
        }
        
        .popup-content::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .popup-content::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 10px;
        }
        
        .popup-content::-webkit-scrollbar-thumb:hover {
            background: #a8a8a8;
        }
        
        .header {
            font-weight: bold;
            color: #000;
        }
        
        .section-title {
            font-weight: bold;
            margin-top: 16px;
            color: #000;
        }
        
        .list-item {
            margin-bottom: 6px;
        }
        
        .footer {
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
        }

        .hidden {
            display: none !important;
        }