/* Custom styles for SmartCalc */

/* Custom scrollbar matching Salla theme */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #00b2a9;
}

/* Fonts logic depending on dir */
html[dir="rtl"] {
    font-family: 'Cairo', 'Cairo', sans-serif;
}
html[dir="ltr"] {
    font-family: 'Inter', sans-serif;
}

/* Slider thumb styling for Salla brand teal */
.slider-thumb-salla::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00b2a9;
    cursor: pointer;
    transition: background .15s ease-in-out;
}
.slider-thumb-salla::-webkit-slider-thumb:hover {
    background: #007f79;
}

.slider-thumb-salla::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: #00b2a9;
    cursor: pointer;
    transition: background .15s ease-in-out;
}
.slider-thumb-salla::-moz-range-thumb:hover {
    background: #007f79;
}

/* Custom class for Ads placeholders */
.ads-box {
    min-height: 90px;
    background: repeating-linear-gradient(
        45deg,
        #f8fafc,
        #f8fafc 10px,
        #f1f5f9 10px,
        #f1f5f9 20px
    );
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
