html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 15px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.container {
    max-width: 1400px;
}

h1 {
    margin-top: 42px;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

input, select {
    background-color: rgb(251,251,251);
    border-width: 1px;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: rgb(0, 112, 150);
    box-shadow: 0 0 0 0.05rem rgba(0, 112, 150, 0.15);
}

select:focus option:checked {
    background-color: rgb(0,112,150);
    color: #fff;
}

.form-check-input:checked {
    background-color: rgb(0,112,150);
    border-color: rgb(0,112,150);
}


/* Links and buttons */

a, .navbar-brand {
    color: #007096;
}

    a:hover {
        color: #7c8e94;
    }

.btn-primary {
    background-color: #007096;
    border: #007096;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active {
        background-color: #7c8e94 !important;
        border-color: #7c8e94 !important;
        box-shadow: none !important; /* Optional: Removes Bootstrap's default focus glow */
    }

    .btn-primary:disabled,
    .btn-primary.disabled {
        background-color: #cfd8dc !important;
        border-color: #cfd8dc !important;
        color: #7a8a90 !important;
        cursor: not-allowed;
        opacity: 1 !important;
    }

.nav-pills .nav-link.active {
    background-color: #007096 !important;
    color: #fff !important;
}

.nav-link {
    color: #007096 !important;
}

/* Add this to fix any issues with border-collapse in some browsers */
table {
    border-collapse: separate;
}

/* Custom form thead */

.table-docs td, .table-docs th {
    font-size: 14.4px;
}

.table-trans td, .table-trans th {
    font-size: 14.7px;
}

.sticky-header {
    position: sticky;
    top: 0;
    background-color: #fff; /* Use the background color of your choice */
    z-index: 100;
}

/* Info Table */

.info_table {
    width: 50%;
    border-collapse: collapse;
    margin: 20px 0;
}

    .info_table, .info_table th, .info_table td {
        border: 1px solid #dddddd;
    }

        .info_table th, .info_table td {
            padding: 7px;
        }

        .info_table th {
            background-color: #f2f2f2;
        }

        .info_table tr:hover {
            background-color: #f5f5f5;
        }


/* Icons */


.icon {
    height: 24px;
}

.icon_grey {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
}


.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;
}


/* Cards */

.card-link {
    display: block;
    height: 100%;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.card-title {
    color: #272e30;
}

.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Initial shadow */
    transition: box-shadow .2s; /* Transition for smooth shadow change */
    margin-bottom: 30px; /* Increased bottom margin for spacing between rows */
    max-width: 400px;
}

    .card:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Hover shadow */
    }

.card-icon {
    font-size: 1.5rem;
    color: #007096;
    margin-bottom: 12px;
}

.card-body {
    position: relative;
    padding-top: 50px; /* Top padding */
    padding-right: 45px; /* Right padding */
    padding-bottom: 45px; /* Bottom padding */
    padding-left: 45px; /* Left padding */
}

.card-col-md-4 {
    padding-left: 20px; /* Add left padding for columns */
    padding-right: 20px; /* Add right padding for columns */
}