html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

/* Scrollable table start */
.table-container {
    position: relative;
    overflow-x: auto;
}

    /* Right shadow with  symbol */
    .table-container::after {
        content: ">";
        position: absolute;
        top: 50%;
        right: 0px; /* Adjusted to give some padding from the right edge */
        height: 100%; /* Full height to cover the entire visible table */
        width: 30px;
        background: linear-gradient(to left, rgba(0, 0, 0, 0.1), transparent);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px; /* Adjust font size for visibility */
        color: rgba(127, 127, 127, 0.5);
        transform: translateY(-50%); /* Center the symbol vertically */
        pointer-events: none; /* Prevent it from interfering with scrolling */
        transition: opacity 0.3s ease;
    }

    /* Left shadow with  symbol */
    .table-container::before {
        content: "<";
        position: absolute;
        top: 50%;
        left: 0px; /* Adjusted to give some padding from the left edge */
        height: 100%; /* Full height to cover the entire visible table */
        width: 30px;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.1), transparent);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px; /* Adjust font size for visibility */
        color: rgba(127, 127, 127, 0.5);
        transform: translateY(-50%); /* Center the symbol vertically */
        pointer-events: none; /* Prevent it from interfering with scrolling */
        transition: opacity 0.3s ease;
        opacity: 0; /* Hidden initially */
    }

    /* Hide the right shadow and symbol when fully scrolled */
    .table-container.hide-right-shadow::after {
        opacity: 0;
    }

    /* Show the left shadow and symbol when scrolled away from the start */
    .table-container.show-left-shadow::before {
        opacity: 1;
    }
/* Scrollable tables end */

.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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}