﻿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;

}
.table-scroll {
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid #ccc;
}

    .table-scroll thead th {
        position: sticky;
        top: 0;
        background-color: #f8f9fa; /* nền sáng để phân biệt với tbody */
        z-index: 10;
    }

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(255, 99, 71, 0.7);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 99, 71, 1);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 99, 71, 0.7);
    }
}
.carousel-item img {
    width: 50% !important;
    height: 50% !important;
    object-fit: cover !important;
    border-radius: 10px !important;
}
