@media (prefers-color-scheme: dark) {
    body {
        --bs-bg: #212529;
        --bs-text: #f8f9fa;
        /* Add other variable overrides as needed */
    }
}

[x-cloak] {
    display: none !important;
}

.shifted-dropdown {
    margin-top: 4px !important;
    right: 1px !important;
    left: auto !important;
}

.brand-name {
    font-size: 48px;
    font-weight: bold;
    /* Choose a font that fits your branding */
    font-family: 'Helvetica', sans-serif;
}

.ask {
    color: #007bff;
}

.robots {
    color: #28a745;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.modal-content {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
}

[data-bs-theme="light"] .modal-content {
    background-color: #ffffff;
    color: #000000;
}

[data-bs-theme="dark"] .modal-content {
    background-color: #343a40;
    color: #ffffff;
}

.btn-close {
    /* Style as needed */
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
}