/* Custom Styles for Tutors Menorah */

/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar Customization */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #cccccc;
}

/* OTP Form Styling */
.otp-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.otp-form input[type="text"] {
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 5px;
}

.otp-form .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 1.1rem;
}

/* Dashboard Cards */
.card {
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .otp-form {
        padding: 15px;
    }
    
    .card {
        margin-bottom: 15px;
    }
}

/* Footer Styling */
footer {
    background-color: #343a40;
    padding: 20px 0;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Upload Preview */
.preview-img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Notifications */
.alert {
    position: relative;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}