/* assets/css/style.css */

/* Fonts */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.font-gujarati {
    font-family: 'Baloo Bhai 2', cursive;
}

/* Minimal Black & White Theme */
.btn-dark {
    background-color: #000;
    border-color: #000;
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
}

.btn-outline-dark {
    color: #000;
    border-color: #000;
}

.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

/* Glassmorphism / Clean Card Design */
.instruction-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header {
    border-top-left-radius: 15px !important;
    border-top-right-radius: 15px !important;
    background: linear-gradient(45deg, #000, #222);
}

/* Form Styles */
.form-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: #000;
    box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.1);
}

/* Utilities */
.text-justify {
    text-align: justify;
}
