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;
}

/*new*/


.btn {
    border-radius: 12px;
    transition: all 0.25s ease-in-out;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        opacity: 0.95;
    }

hr {
    height: 1px;
    background-color: #e2e8f0;
    border: none;
}

body {
    background-color: #f8fafc; /* very light gray-blue background */
}

.pagination .page-link {
    color: #0d6efd;
    border-radius: 6px;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
.fixed-action-bar {
    position: fixed;
    bottom: 15px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 0; /* reduced from 10px */
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

    .fixed-action-bar .btn {
        border-radius: 6px;
        font-size: 0.81rem; /* reduced ~10% */
        padding: 6px 12px; /* reduced ~10% */
    }

    .fixed-action-bar .btn-success {
        background-color: #198754;
        border: none;
    }

        .fixed-action-bar .btn-success:hover {
            background-color: #157347;
        }

    .fixed-action-bar .btn-outline-secondary {
        font-size: 0.81rem;
        padding: 6px 12px;
    }
