/* Tide template custom CSS style v1.0 */
/* Using the examples, provide your own styling */

/*
.bg-primary {
     background-color: #your-color !important;
}
.text-primary {
     color: #your-color !important;
}
.btn-primary {
     background-color: #your-color !important;
     border-color: #your-color !important;
}
.btn-primary:hover {
     background-color: #your-hover-color !important;
     border-color: #your-hover-color !important;
}
.btn-primary:focus {
     background-color: #your-focus-color !important;
     border-color: #your-focus-color !important;
     box-shadow: 0 0 0 0.2rem rgba(#your-color, 0.5) !important;
}
.btn-primary:active {
     background-color: #your-active-color !important;
     border-color: #your-active-color !important;
}
.btn-primary:disabled {
     background-color: #your-disabled-color !important;
     border-color: #your-disabled-color !important;
}

.wait::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}
.wait::after {
    content: "";
    position: fixed;
    top: 50%; left: 50%;
    width: 50px; height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
    z-index: 1001;
}
@keyframes spin { to { transform: rotate(360deg); } }

    /* Tab styling with white text and fade effect */
    #tld-tabs .nav-link {
        color: rgba(255,255,255,0.7) !important;
        border: none !important;
        transition: all 0.3s ease;
        font-weight: 500;
        text-shadow: 0 1px 1px rgba(0,0,0,0.3);
    }
    
    #tld-tabs .nav-link.active {
        color: white !important;
        opacity: 1 !important;
        background: rgba(255,255,255,0.2) !important;
        border-bottom: 2px solid white !important;
        box-shadow: 0 0 8px rgba(255,255,255,0.2);
    }
    
    #tld-tabs .nav-link:not(.active):hover {
        color: rgba(255,255,255,0.9) !important;
        background: rgba(255,255,255,0.15) !important;
        
    }
    
    /* Tab container styling */
    .nav-tabs-card {
        --tblr-nav-tabs-link-padding-x: 0.75rem;
        --tblr-nav-tabs-link-padding-y: 0.5rem;
        background: rgba(255,255,255,0.05);
        border-top-left-radius: var(--tblr-border-radius);
        border-top-right-radius: var(--tblr-border-radius);
    }
    
    /* Select box styling */
    #tld-content .form-select {
        border: none;
        box-shadow: none !important;
    }
    @media (max-width: 768px) {
    .domainsearch .d-flex {
        width: 100% !important;
        }
    }
*/