:where([class^="ri-"])::before {
    content: "\f3c2";
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #0f766e 100%);
}

@media (min-width: 768px) {
    main.ml-72 {
        margin-left: 15rem !important;
    }
}

.dashboard-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.dashboard-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.checkbox-custom {
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    position: relative;
}

.checkbox-custom:checked {
    background: #1e40af;
    border-color: #1e40af;
}

.checkbox-custom:checked::after {
    content: "✓";
    position: absolute;
    top: -3px;
    left: 1px;
    color: white;
    font-size: 12px;
    font-weight: 700;
}
