/* General Page Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #e3f2fd, #ffffff);
    margin: 0;
    padding: 20px;
    color: #333;
}

/* Container */
.container {
    width: 90%;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border: 1px solid #d1e3f8;
}

.container:hover {
    transform: scale(1.01);
}

/* Title */
h2 {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #0077b6;
}

/* Column Selection */
.column-selection {
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(220, 235, 250, 0.7);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.column-selection label {
    font-weight: 500;
    color: #005f99;
    cursor: pointer;
    transition: 0.3s;
}

.column-selection input {
    margin-right: 6px;
}

.column-selection label:hover {
    color: #004d80;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid #b3d9f5;
}

/* Table Header */
thead th {
    background: #0077b6;
    color: white;
    padding: 12px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

/* Table Rows */
tbody tr:nth-child(odd) {
    background: #f0f8ff;
}

tbody tr:nth-child(even) {
    background: #e3f2fd;
}

/* Hover Effects */
tbody tr:hover {
    background: #d1e3f8 !important;
    transition: 0.3s;
}

/* Table Cells */
td {
    padding: 10px;
    text-align: center;
    color: #333;
    font-size: 14px;
}

/* Pagination */
.dataTables_paginate {
    margin-top: 12px;
}

.dataTables_paginate .paginate_button {
    background: #0077b6;
    color: white !important;
    padding: 8px 12px;
    border-radius: 5px;
    margin: 4px;
    font-size: 14px;
    transition: 0.3s;
    border: none;
}

.dataTables_paginate .paginate_button:hover {
    background: #005f99;
}

/* Search Box */
.dataTables_filter input {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #0077b6;
    background: white;
    color: black;
}

/* Checkbox Styling */
input[type="checkbox"] {
    accent-color: #0077b6;
    transform: scale(1.1);
    cursor: pointer;
}
