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;
}

.scrollable-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    scroll-behavior: smooth; /* Smooth scrolling effect */
}

    .scrollable-container .nav-tabs {
        display: inline-flex;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
        list-style: none;
    }

        .scrollable-container .nav-tabs li {
            display: inline-block;
            margin-right: 10px;
        }

        .scrollable-container .nav-tabs .nav-link {
            display: inline-block;
            padding: 10px 20px;
            background-color: #ffffff;
            border: 1px solid #dee2e6;
            border-radius: 4px;
            color: #495057;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
        }

            .scrollable-container .nav-tabs .nav-link:hover {
                background-color: #e9ecef;
                color: #212529;
            }

            .scrollable-container .nav-tabs .nav-link.active {
                background-color: #007bff;
                color: #ffffff;
                border-color: #007bff;
            }

            .scrollable-container .nav-tabs .nav-link:focus {
                outline: none;
                box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Focus style for accessibility */
            }

    .scrollable-container::-webkit-scrollbar {
        height: 8px;
        transition: background-color 0.3s; /* Transition effect for scrollbar */
    }

    .scrollable-container::-webkit-scrollbar-thumb {
        background-color: #007bff;
        border-radius: 4px;
    }

    .scrollable-container::-webkit-scrollbar-track {
        background-color: #f8f9fa;
    }