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;
}

.active-page {
    border-bottom: 5px solid #020065;
}

.text-custom {
    color: #020065;
    font-weight: 700;
}

.lable-custom {
    font-weight: 600;
}

.input-custom {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .input-custom:focus {
        color: #495057;
        background-color: #fff;
        border-color: #020065;
        outline: 0;
        box-shadow: 0 0 0 0.1rem #020065;
    }


.btn-custom {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    background-color: #020065;
    border-color: #020065;
    color: white;
}

.btn-custom:hover {
    background-color: darkblue;
    border-color: darkblue;
    color: white;
    text-decoration: none;
}

.table-custom {
    color: white;
    background-color: #020065;
}


.form-group-custom {
    margin-bottom: 1rem;
}

.form-control-custom {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .form-control-custom:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.1rem #020065;
    }

.input-group-custom {
    display: flex;
    width: 100%;
}

.input-group-text-custom {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

.nav-item .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    text-decoration: none;
    display: block;
}

    .dropdown-item:hover {
        background-color: WhiteSmoke;
    }

.tr-custom {
    background-color: white;
}

    .tr-custom:hover {
        background-color: WhiteSmoke;
    }

.th-custom {
    cursor: pointer;
}

.a-custom {
    color: #020065;
}

    .a-custom:visited {
        color: #020065;
        text-decoration: underline;
        cursor: pointer;
    }

.a-custom:hover {
    color: darkblue;
    text-decoration: underline;
    cursor: pointer;
}

.tooltip-button {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip-button:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}