/*
Theme Name: YoSchooler
Theme URI: https://yoschooler.com
Author: YoSchooler Team
Author URI: https://yoschooler.com
Description: A High-Performance WordPress Theme for Schools and Tutors.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yoschooler
Tags: education, directory, schools, rtl, custom-background
*/

/* Tailwind CSS is injected via assets/css/compiled.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --ys-primary: #064e3b;
    --ys-navy: #0f172a;
    --ys-bg: #f8fafc;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--ys-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for a premium look */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}