@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --accent: rgb(140, 255, 46);
    --accent-hover: rgb(120, 230, 30);
    --bg-gray: rgb(248, 248, 248);
    --text-main: #2f2f2f;
    --border-light: #e2e8f0;
}

body {
    background-color: var(--bg-gray);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
h1, h2, h3, h4, .font-bold {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Premium Component Classes */
.card-premium {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.card-premium:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgb(140, 255, 46);
    color: #2f2f2f;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.btn-premium:hover {
    background-color: rgb(120, 230, 30);
}
.btn-premium:active {
    transform: scale(0.95);
}

.input-premium {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    outline: none;
    background-color: rgba(249, 250, 251, 0.5);
}
.input-premium:focus {
    border-color: rgb(140, 255, 46);
    box-shadow: 0 0 0 4px rgba(140, 255, 46, 0.1);
}

/* Custom scrollbar for light mode professional dashboard */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

.custom-scrollbar::-webkit-scrollbar {
    height: 4px;
}