/* Custom styles for a modern and attractive form */

.station-name {
    color: black !important;
}

body {
    font-family: Arial, sans-serif;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #006600; /* Dark green for card header */
    color: white;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-weight: bold;
    padding: 15px 20px;
}

.form-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-control,
.form-select {
    color: #333;
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: #006600;
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 0, 0.25);
}

.btn-primary {
    background-color: #006600;
    border-color: #006600;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #004d00;
    border-color: #004d00;
    transform: translateY(-2px);
}

.alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.table {
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background-color: #f8f9fa;
    color: #555;
}

.table th {
    font-weight: bold;
    color: #555;
}

.table tbody.table-striped-rows tr:nth-child(odd) {
    background-color: #f2f2f2; /* Light gray for odd rows */
}

.table tbody.table-striped-rows tr:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

/* Custom styles for dashboard cards */
.custom-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card.bg-primary {
    background-color: #007bff; /* Bootstrap Primary Blue */
}

.custom-card.bg-success {
    background-color: #28a745; /* Bootstrap Success Green */
}

.custom-card.bg-info {
    background-color: #17a2b8; /* Bootstrap Info Cyan */
}

.custom-card.bg-warning {
    background-color: #ffc107; /* Bootstrap Warning Yellow */
}

.custom-card.bg-danger {
    background-color: #dc3545; /* Bootstrap Danger Red */
}

.custom-card.bg-secondary {
    background-color: #6c757d; /* Bootstrap Secondary Gray */
}

/* Adjust text color for light backgrounds if needed */
.custom-card.bg-warning,
.custom-card.bg-info {
    color: #212529; /* Dark text for light backgrounds */
}

.custom-card.bg-info h3, .custom-card.bg-info p {
    color: #000; /* Adjust text color for better contrast on light backgrounds */
}

.custom-card .card-body p {
    font-size: 1.8rem; /* Increase font size for values */
    font-weight: bold;
}

@media print {
    .no-print {
        display: none !important;
    }
}

.custom-card .card-body {
    padding: 20px;
}

.custom-card .card-title-text {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: white;
}

.custom-card .card-text {
    color: rgba(255, 255, 255, 0.9);
}

.custom-card .card-value-text {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.custom-card .card-icon-wrapper {
    font-size: 2.5rem;
    color: white;
    opacity: 0.8;
}

/* Auto-coloring for cards */
.row .col-md-3:nth-child(1) .custom-card { background: linear-gradient(135deg, #3498db, #2980b9); }  /* Blue */
.row .col-md-3:nth-child(2) .custom-card { background: linear-gradient(135deg, #f39c12, #d35400); }  /* Orange */
.row .col-md-3:nth-child(3) .custom-card { background: linear-gradient(135deg, #1abc9c, #16a085); }  /* Turquoise */
.row .col-md-3:nth-child(4) .custom-card { background: linear-gradient(135deg, #2ecc71, #27ae60); }  /* Green */
.row .col-md-3:nth-child(5) .custom-card { background: linear-gradient(135deg, #e74c3c, #c0392b); }  /* Red */
.row .col-md-3:nth-child(6) .custom-card { background: linear-gradient(135deg, #9b59b6, #8e44ad); }  /* Purple */

/* Statistics cards */
.row .col-xl-3:nth-child(1) .custom-card { background: linear-gradient(135deg, #34495e, #2c3e50); }  /* Dark gray */
.row .col-xl-3:nth-child(2) .custom-card { background: linear-gradient(135deg, #16a085, #1abc9c); }  /* Teal */
.row .col-xl-3:nth-child(3) .custom-card { background: linear-gradient(135deg, #d35400, #e67e22); }  /* Dark orange */
.row .col-xl-3:nth-child(4) .custom-card { background: linear-gradient(135deg, #8e44ad, #9b59b6); }  /* Purple */
.row .col-xl-3:nth-child(5) .custom-card { background: linear-gradient(135deg, #c0392b, #e74c3c); }  /* Red */
.row .col-xl-3:nth-child(6) .custom-card { background: linear-gradient(135deg, #27ae60, #2ecc71); }  /* Green */


.custom-small-table {
    font-size: 12px;
}

.custom-small-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
    border-radius: 0.2rem;
    width: 30px; /* Fixed width for consistency */
    height: 30px; /* Fixed height for consistency */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Align text to the center */
}

.request-details-grid .col-md-6 {
    border: 1px solid #e3e6f0;
    padding: 8px 15px;
    text-align: left;
}

.request-details-grid .row.odd-row {
    background-color: #f8f9fa; /* Light gray for odd rows */
}

.request-details-grid .col-md-6 p {
    margin-bottom: 0;
}

.status-loaded {
    background-color: #d4edda; /* Light green */
}

.status-empty {
    background-color: #fff3cd; /* Light yellow */
}

.status-transferred {
    background-color: #d1ecf1; /* Light blue */
}

.btn-green-custom {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    padding: 10px 20px; /* Reverted to normal padding */
    font-size: 1rem; /* Reverted to normal font size */
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-green-custom:hover {
    background-color: #218838;
    border-color: #218838;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-green-hero {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    padding: 18px 40px; /* Increased padding for hero button */
    font-size: 1.3rem; /* Increased font size for hero button */
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-green-hero:hover {
    background-color: #218838;
    border-color: #218838;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-yellow-custom-header {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-yellow-custom-header:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #212529;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.btn-yellow-custom {
    background-color: #ffc107; /* Yellow color for register button */
    color: #212529; /* Dark text for better contrast */
    border-color: #ffc107;
}

.btn-yellow-custom:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    position: relative;
}
.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(3, 10, 110, 0.2); Subtle green overlay */
    z-index: 1;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745; /* Primary green accent */
    border-radius: 2px;
}
.info-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}
.info-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #28a745;
}
.info-card .icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 10px rgba(40, 167, 69, 0.3)); /* Shadow for icons */
}
.info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: #28a745; /* Primary green for card titles */
    margin-bottom: 20px;
    font-weight: 700;
}
.info-card .btn-link {
    color: #28a745;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}
.info-card .btn-link:hover {
    color: #218838;
    text-decoration: underline;
}
.info-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}
.info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.commodity-rate-card .route i {
    color: #28a745;
}
.commodity-rate-card .btn-book-now {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    align-self: flex-end; /* Align button to the bottom right */
}
.commodity-rate-card .btn-book-now:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}
.contact-form-section .form-control {
    border-radius: 0.25rem;
    padding: 0.75rem 1rem;
}
.contact-form-section .btn-success {
    background-color: #28a745;
    border-color: #28a745;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}
.contact-form-section .btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
.map-section {
    padding: 50px 0;
}
.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.contact-us-section {
    padding: 100px 0;
    background-color: #f0f4f8;
}
.contact-us-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    color: #28a745;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    position: relative;
}
.contact-us-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #28a745; /* Primary green accent */
    border-radius: 2px;
}
.contact-us-section .info-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}
.contact-us-section .info-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}
.contact-us-section .info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}
.contact-us-section .info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
}
.contact-us-section .btn-yellow-custom {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-us-section .btn-yellow-custom:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Styles for public_header.php navigation bar */
.navbar {
    background-color: #ffffff; /* White background for navbar */
    padding: 1rem; /* Increased padding for better spacing */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
}
.navbar-brand {
    color: #28a745; /* Green text for brand name */
    display: flex;
    align-items: center;
    font-size: 1.8rem; /* Increased font size */
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px; /* Increased logo height */
    margin-right: 10px;
}
.navbar-brand {
    font-size: 1.2rem; /* Adjusted font size for brand name */
    font-weight: bold;
}
.navbar .contact-info {
    font-size: 0.9rem;
    color: #28a745; /* Green text for contact info */
    margin-right: auto; /* Push contact info to the left */
}
.navbar .contact-info div {
    display: flex;
    align-items: center;
    margin-right: 20px; /* Spacing between email and phone */
}
.navbar .contact-info span {
    margin-left: 5px;
}
.navbar .auth-buttons {
    display: flex;
    align-items: center;
}
.navbar .auth-buttons .btn-warning {
    background-color: #ffc107; /* Yellow for register button */
    border-color: #ffc107;
    color: #212529;
    margin-left: 10px; /* Spacing between login and register */
}
.navbar .auth-buttons .btn-link {
    color: #212529; /* Dark text for login link */
}
.footer .text-muted {
    color: #adb5bd !important; /* Lighter muted text for copyright */
}

/* Adjustments for wagon weighing input fields */
.table .form-control.gross-weight,
.table .form-control.tare-weight,
.table .form-control.net-weight,
.table .form-control.weighing-date {
    min-width: 100px; /* Adjust as needed */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    min-width: 1200px; /* Ensure table is wide enough to prevent squishing */
    white-space: nowrap; /* Prevent text wrapping in table cells */
}

.table th, .table td {
    padding: 0.5rem;
}

/* Styles for login.php */
.content {
    padding-top: 20px; /* Adjust this value based on your header's height */
}
.login-container {
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 450px;
    margin: 20px auto;
    text-align: center;
}
.login-header {
    text-align: center;
    margin-bottom: 30px;
}
.login-header h2 {
    color: #28a745; /* Green color */
    font-weight: bold;
    margin-bottom: 10px;
}
.login-header a {
    color: #007bff;
    text-decoration: none;
}
.form-group label {
    font-weight: 500;
    text-align: left;
    display: block;
}
.form-control {
    border-radius: 5px;
}
.captcha-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    justify-content: center;
}
.captcha-image {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 10px;
    border-radius: 5px;
}
.form-check-label a {
    color: #007bff;
    text-decoration: none;
}

/* Adjust font size for forms in wagons_assignment.php */
.wagon-assignment-form .form-label {
    font-size: 0.85rem;
}

.wagon-assignment-form .form-control {
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

.filter-row .form-group.form-focus .select {
    min-width: 180px; /* Ensure select dropdown has a minimum width */
}

/*FDA Report Styling */
.form-inline .form-group {
    margin-right: 15px;
}

.table th,
.table td {
    vertical-align: middle;
}

.table tfoot th {
    font-weight: bold;
}

.table-responsive {
    margin-top: 20px;
}

/* Add FDA Report Form Styling */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.page-header {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.card {
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card-body {
    padding: 20px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.flash-message.alert {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.flash-message.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.flash-message.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.flash-message.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.flash-message.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    border-radius: 5px;
    color: #007bff;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

/* Stations Dashboard Specific Styles */
.stations-dashboard .card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    border: none;
}

.stations-dashboard .card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eef1f4;
    padding: 1.25rem 1.5rem;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stations-dashboard .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
}

.stations-dashboard .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.stations-dashboard .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.stations-dashboard .table-responsive {
    padding: 1.5rem;
}

.stations-dashboard .table {
    margin-bottom: 0;
}

.stations-dashboard .table thead th {
    background-color: #f8f9fa;
    color: #555;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem 0.75rem;
    vertical-align: middle;
}

.stations-dashboard .table tbody tr {
    transition: background-color 0.2s ease;
}

.stations-dashboard .table tbody tr:hover {
    background-color: #f2f7ff;
}

.stations-dashboard .table tbody td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #eef1f4;
    color: #444;
}

.stations-dashboard .badge {
    padding: 0.5em 0.75em;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.75em;
}

.stations-dashboard .badge-success {
    background-color: #28a745;
    color: #fff;
}

.stations-dashboard .badge-danger {
    background-color: #dc3545;
    color: #fff;
}

.stations-dashboard .btn-sm {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.stations-dashboard .btn-info {
    background-color: #17a2b8;
    border-color: #17a2b8;
    color: #fff;
}

.stations-dashboard .btn-info:hover {
    background-color: #117a8b;
    border-color: #117a8b;
}

.stations-dashboard .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.stations-dashboard .btn-danger:hover {
    background-color: #c82333;
    border-color: #c82333;
}


    margin: 0 5px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #007bff;
    transition: all 0.3s ease;
}

.stations-dashboard .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background-color: #e9ecef;
    border-color: #e9ecef;
    color: #0056b3;
}

.stations-dashboard .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.stations-dashboard .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.stations-dashboard .dataTables_wrapper .dataTables_info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Modal Styling */
.stations-dashboard .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stations-dashboard .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 1.5rem;
}

.stations-dashboard .modal-title {
    font-weight: 600;
    color: #333;
}

.stations-dashboard .modal-body {
    padding: 1.5rem;
}

.stations-dashboard .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.stations-dashboard .form-label {
    font-weight: 500;
    color: #555;
}

.stations-dashboard .form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.stations-dashboard .form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.stations-dashboard .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.stations-dashboard .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #5a6268;
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stations-dashboard .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .stations-dashboard .card-title {
        font-size: 1.25rem;
    }

    .stations-dashboard .btn-primary {
        width: 100%;
    }

    .stations-dashboard .dataTables_wrapper .dataTables_filter {
        text-align: left;
    }

    .stations-dashboard .dataTables_wrapper .dataTables_filter input {
        width: 100%;
    }
}


.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.table, .table th, .table td {
    border: 1px solid #dee2e6; /* Light gray border */
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #dee2e6;
}
