/* assets/css/style.css */

/* Body background and font */
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero section styling */
.hero-section {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    color: white;
}

/* Navbar links */
.navbar .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #ffc107 !important;
}
/*logo */
.logo-background {
    background: linear-gradient(90deg, #0d6efd, #6610f2); /* same as .hero-section or your navbar */
    padding: 15px;
    display: inline-block; /* shrink-wrap */
    border-radius: 8px; /* optional: rounded corners to match navbar style */
}

/* Cards hover effect */
.card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Footer styling */
footer {
    background-color: #212529;
    color: #adb5bd;
    font-size: 0.9rem;
}

footer p {
    font-size: 0.85rem;
    color: #ced4da;  /* slightly lighter gray */
    margin: 0;
}
footer {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Buttons */
.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

/* Form field focus */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 5px #0d6efd;
    border-color: #0d6efd;
}

/* Responsive tables horizontal scroll */
.table-responsive {
    overflow-x: auto;
}

/* Smaller text for notes and form hints */
.form-text {
    font-size: 0.85rem;
    color: #6c757d;
}