/* Loading Animation */
.dt-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dark Theme Support */
@media (prefers-color-scheme: dark) {

}

/* Add these styles at the end: */
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -1000px !important;
}

.goog-te-gadget-simple {
    border: none !important;
    background: transparent !important;
}

.goog-te-menu-value {
    display: none !important;
}

.goog-logo-link {
    display: none !important;
}

.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.dt-custom-dropdown {
    position: relative;
    cursor: pointer;
}
.dt-selected-option {
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    font-size: 15px;
    text-transform: uppercase;
}

.dt-dropdown-options {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid #ddd;
    z-index: 1000;
    max-height: 300px;
    width: auto;
    overflow-y: auto;
}

.dt-custom-dropdown.open .dt-dropdown-options {
    display: block;
}

.dt-option {
    padding: 8px 12px;
    display: flex;
    align-items: center;
}
.dt-option:hover {
    background: #f5f5f5;
}

.dt-flags {
    width: 26px;
    height: 25px;
    border-radius: 50%;
}

.dt-names {
    font-size: 15px;
    text-transform: uppercase;
}

.dt-codes {
    text-transform: uppercase;
    font-size: 15px;
}

.dt-vertical-list {
    margin: 10px;
}

.dt-vertical-list-item {
    padding: 5px 10px;
    cursor: pointer;
}

.dt-vertical-list-item.active {
    background-color: #e1e1e1;
}

.dt-horizontal-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px;
}

.dt-horizontal-list-item {
    padding: 10px;
    cursor: pointer;
}

.dt-horizontal-list-item.active {
    background-color: #e1e1e1;
}

span.dt-preview-item {
    margin-right: 10px;
}
