/* Global Styles */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #f8f9fa;
}

/* Jumbotron styles */
.jumbotron {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.3rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Card styles */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f8f9fa;
    font-weight: bold;
}

/* Table styles */
.table th {
    background-color: #f8f9fa;
}

/* Form styles */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Footer styles */
footer {
    margin-top: 2rem;
}