body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h3 {
    font-size: 2rem;
    color: #343a40;
    text-align: center;
    margin-bottom: 20px;
}

.table-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-x: auto; /* Horizontal scroll for smaller screens */
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    background-color: #343a40;
    color: #ffffff;
    font-weight: 600;
}

.table td {
    font-size: 0.9rem;
    color: #495057;
}

.table a.btn-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.table a.btn-link:hover {
    text-decoration: underline;
}

.filter-form {
    margin-bottom: 20px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.checkbox-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    margin-right: 5px;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.text-center {
    text-align: center;
}
.text-muted {
    color: #6c757d;
    margin:13px;
}

@media (max-width: 768px) {
    .table-container {
        padding: 15px;
    }

    .table th, .table td {
        padding: 10px 8px;
    }

    .filter-row {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
        margin-top: 10px; 
    }
}
