html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    padding-bottom: 60px; /* Adjust based on nav height */
}

.table tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray for even rows */
}

.table tr:nth-child(odd) {
    background-color: #ffffff; /* White for odd rows */
}

.table tr:hover {
    background-color: #f1f1f1; /* Highlight row on hover */
}

/* Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

    .bottom-nav a {
        text-align: center;
        flex: 1;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        padding: 10px 0;
    }

    .bottom-nav i {
        font-size: 20px;
        display: block;
    }

    /* Highlight Active Link */
    .bottom-nav .active {
        color: blue;
        font-weight: bold;
    }
