/* Reset Styles */

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: "Arial", sans-serif;
    background: #f8f9fa;
    display: flex;
}

/* Sidebar */

/* .sidebar {
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #ff4d4d, #ff6666);
    color: white;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
} */

/* Main Content */

/* Table Container */

.table-container {
    flex-grow: 1;
}

/* Card */

.card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #dc3545;
    color: white;
    padding: 15px;
    border-radius: 10px 10px 0 0;
}

.card-body {
    background: white;
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

/* Table Styling */

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.table th,
.table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.table th {
    background: #dc3545;
    color: white;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

/* Buttons */

.btn {
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 14px;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
}

.btn-outline-primary {
    border: 1px solid #007bff;
    color: #007bff;
}

.btn-outline-danger {
    border: 1px solid #dc3545;
    color: #dc3545;
}

/* Pagination */

.pagination {
    justify-content: center;
    padding: 15px 0;
}

.pagination .page-item.active .page-link {
    background-color: #dc3545;
    border-color: #dc3545;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-select {
    flex: 1;
    /* Makes all selects equal in width */
    min-width: 150px;
    /* Ensures responsiveness */
}
