@import 'tailwindcss';

@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}

html {
    font-size: 20px; /* default is usually 16px */
}
 body {
	background: #030b1a;
	font-family: 'DM Sans', sans-serif;
}

::-webkit-scrollbar {
	width: 4px;
	height: 4px;
}

::-webkit-scrollbar-track {
	background: #0a1b35;
}

::-webkit-scrollbar-thumb {
	background: #f5c842;
	border-radius: 2px;
}

.nav-item.active {
	background: rgba(245, 200, 66, .12);
	border-right: 3px solid #f5c842;
}

.nav-item {
	transition: background .2s;
}

.nav-item:hover {
	background: rgba(255, 255, 255, .05);
}

.card {
	background: #0a1b35;
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 10px;
}







