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;
}

.only-print {
    display: none;
}

@media print {
    .no-print {
        display: none;
    }

    .only-print {
        display: inherit;
    }
}

.test-image {
    width: 200px;
    height: 200px;
}

.zoom-on-hover {
    transition: transform 0.3s ease;
}

    .zoom-on-hover:hover {
        transform: scale(1.2);
    }

.test-container {
    position: relative;
    width: 300px; /* Adjust this according to your image size */
}

.test-img {
    width: 100%;
    height: auto;
}

.test-overlay {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    transition: left 0.3s ease;
}

.test-container:hover .test-overlay {
    left: 0;
    opacity: 1;
}
.test-container2 {
    display: grid;
    place-items: center;
    height: 500px;
    border: 2px solid;
}
