/* Professional Domain Styles 2026 - Bulk Edition */

.DS .glass-card {
    background: var(--bg-surface);
}

/* Dark Mode Fixes */
.dark .glass-card {
    background: #0a0a0a;
    border-color: #1a1a1a;
}

.dark #domain-search-input {
    background: #050505;
    color: #ffffff;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* TLD Boxes - Micro Styling */
.tld-box {
    text-transform: lowercase !important;
    font-style: normal !important;
    font-weight: 500 !important;
    padding: 0.4rem 0.75rem !important;
    min-width: unset !important;
}

.tld-box span {
    font-size: 13px;
}

/* Domain Result Cards */
.domain-card {
    transition: all 0.2s ease-out;
}

.domain-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.domain-card.AVAILABLE {
    border-left: 3px solid var(--secondary);
}

/* Scrollbar Hide Utility */
.custom-scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.custom-scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Result Stats Fix */
.not-italic {
    font-style: normal !important;
}

/* Touch drag usability for mobile TLD groups */
.YbDropDown ul {
    -webkit-overflow-scrolling: touch;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .DS .glass-card {
        padding: 1rem !important;
        border-radius: 1.25rem !important;
    }

    #domain-search-input {
        padding: 1rem !important;
        font-size: 1rem !important;
        min-height: 100px !important;
        border-radius: 1rem !important;
    }

    /* TLD Grids - adapt for single or double column better spacing */
    .tld-box {
        flex-grow: 1;
        justify-content: center !important;
        padding: 0.5rem 0.5rem !important;
    }

    .domain-card {
        padding: 1.25rem !important;
        gap: 1rem !important;
    }
}