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;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hover on the nav bar items */
.nav-link:hover {
    background: lightgrey;
    transform: scale(1.05);
}
@media screen and (max-width: 1400px) {
    .nav-link:hover {
        transform: scale(1.015);
    }
}

/* Site Icons found on the NAV Bar */
.siteIcons {
    color: #015c55
}

body, nav {
    font-family: 'Inter', sans-serif;
}

/*This is for the images inside the form-groups that are white on blue found on forms on many pages */
.input-group > span { 
    color: white;
    background-color: #337ab7
}

/* Leaving individual table styling for now. Could potentially move into one standardized format for all datatables... */
/* CheckInformation tables */
#checksTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}

#checksTable tbody tr td {
    border: solid 1px lightgrey
}

/* Contact Information tables */
#contactsTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}
/* Contact Information Notes Table*/
#contactsNotesTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}

/* User Management Table */
#myInfoUsersTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}

/* Employee Directory Table */
#employeeDirectoryTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}

#employeeDirectoryTable tbody tr td {
    border: solid 1px lightgrey
}

/* Employee Leave History Table */
#employeeLeaveHistoryTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}

#employeeLeaveHistoryTable tbody tr td {
    border: solid 1px lightgrey
}

/* Employee Directory Table */
#employeeLeaveAccrualTable thead tr th {
    background-color: #337ab7;
    font-weight: bold;
    color: white;
}

#employeeLeaveAccrualTable tbody tr td {
    border: solid 1px lightgrey
}

.dataTables_filter {
    margin-bottom: 10px;
}

/* When hovering the SVG anchor tags, they enlarge to seem more responsive */
a:hover > svg {
    transform: scale(1.3);
}

@media screen and (max-width: 600px) {
    a:hover > svg {
        transform: scale(1.2);
    }
}

/* Turns cursor into a grabber on any page that has select statements */
select:hover {
    cursor: pointer;
}
/* Slightly enlarges a button when a user hovers it. Should make the site feel more responsive. */
.btn:hover {
    transform: scale(1.03);
}

@media screen and (max-width: 600px) {
    .btn:hover {
        transform: scale(1.02);
    }
}

/* When hovering a checkbox, the mouse cursor turns into the grabber */
input[type="checkbox"]:hover {
    cursor: pointer;
}
/* Modal styles -- Used on UserManagement and Contact Information */
.modal .modal-dialog {
    max-width: 400px;
}

.modal .modal-header, .modal .modal-body, .modal .modal-footer {
    padding: 20px 30px;
}

.modal .modal-content {
    border-radius: 3px;
}

.modal .modal-footer {
    background: #ecf0f1;
    border-radius: 0 0 3px 3px;
}

.modal .modal-title {
    display: inline-block;
}

.modal .form-control {
    border-radius: 2px;
    box-shadow: none;
    border-color: #dddddd;
}

.modal textarea.form-control {
    resize: vertical;
}

.modal .btn {
    border-radius: 2px;
    min-width: 100px;
}

.modal form label {
    font-weight: normal;
}

