/* style.css */
.table {
    border: 2px solid #dee2e6;
}

.table th, .table td {
    border: 2px solid #7c7d7e;
}

.row-changed {
    transition: background-color 0.5s ease;
    background-color: #fffacd;  /* Light yellow */
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand img {
    margin-right: 10px;
}

footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.page-number {
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: #007bff;
    color: white;
}

.page-number.active {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

#page-tooltip {
    pointer-events: none;
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .table thead {
        display: none;
    }
    .table, .table tbody, .table tr, .table td {
        display: block;
        width: 100%;
    }
    .table tr {
        margin-bottom: 15px;
    }
    .table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
    }
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 6px;
        width: 45%;
        text-align: left;
        font-weight: bold;
    }
}