@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';
}
/* Custom styles for quiz start page */
.quiz-title {
    font-size: 36px;
    font-weight: bold;
    color: #1e3d58; /* Dark Blue */
    margin-top: 40px;
}

.quiz-form-wrapper {
    max-width: 500px;
    margin: 40px auto;
}

.quiz-form {
    border-radius: 10px;
    background-color: #f7fafc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.quiz-form .form-label {
    font-size: 14px;
    color: #4a4a4a;
}

.quiz-form .form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.quiz-form .btn {
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
}

.quiz-form .btn:hover {
    background-color: #1e3d58;
    color: white;
}

.quiz-form .form-control:focus {
    border-color: #1e3d58;
    box-shadow: 0 0 0 0.2rem rgba(30, 61, 88, 0.25);
}

.alert {
    font-size: 16px;
    border-radius: 8px;
}

.text-center {
    text-align: center;
}

.quiz-form-wrapper .mb-4 {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .quiz-title {
        font-size: 28px;
    }
    .quiz-form-wrapper {
        padding: 10px;
    }
}
#questionBox {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

#optionsBox {
    margin-top: 20px;
}

.form-check {
    margin-bottom: 15px;
}

#submitBtn {
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 8px;
}

#submitBtn:hover {
    background-color: #4a90e2;
    color: #fff;
    transition: background-color 0.3s;
}

#timer {
    font-weight: bold;
    font-size: 1.5rem;
}

.timer-container {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 30px;
}

.container {
    max-width: 800px;
    margin-top: 40px;
}

.quiz-form {
    background-color: #f7fafc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Add custom styles for pagination */
.pagination {
    margin-top: 20px;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border-radius: 5px;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: white;
}
