/* التنسيق والألوان الافتراضية لثيم Zealens */
:root {
--brand-light: #fdfbf7;
--brand-dark: #111111;
--brand-accent: #c59b6d;
--brand-gray: #757575;
--brand-soft-bg: #f5efe6;
}

body {
background-color: var(--brand-light);
color: var(--brand-dark);
font-family: 'Plus Jakarta Sans', 'Tajawal', sans-serif;
overflow-x: hidden;
transition: background-color 0.3s ease, color 0.3s ease;
}

.transition-all-300 {
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none;
scrollbar-width: none;
}

input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 18px;
height: 18px;
border-radius: 50%;
background: var(--brand-dark);
border: 2px solid var(--brand-accent);
cursor: pointer;
box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

input[type="range"] {
outline: none;
}

#toast {
visibility: hidden;
min-width: 280px;
margin-left: -140px;
background-color: var(--brand-dark);
color: #fff;
text-align: center;
border-radius: 12px;
padding: 16px;
position: fixed;
z-index: 100;
left: 50%;
bottom: 30px;
font-size: 14px;
box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

#toast.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
from { bottom: 0; opacity: 0; }
to { bottom: 30px; opacity: 1; }
}

@keyframes fadeout {
from { bottom: 30px; opacity: 1; }
to { bottom: 0; opacity: 0; }
}

