body {
    background-color: #f0f0f0;
}

h1 {
    color: #f96173;
}

th > a > span.float-end {
    float: unset !important;
}

.img-import {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.img-wrapper {
    min-width: 70%;
}

/* Custom button */
.btn-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    width: 6rem;
    height: 6rem;
    border: solid var(--bs-success) 5px;
    box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.8);
}
.btn-custom i {
    font-size: 3rem;
    color: var(--bs-success);
}
.btn-custom.sm {
    width: 2rem;
    height: 2rem;
    border: solid var(--bs-success) 3px;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.8);
}
.btn-custom.sm i {
    font-size: 1rem;
}
.btn-custom.danger {
    border-color: var(--bs-danger);
}
.btn-custom.danger i {
    color: var(--bs-danger);
}
.btn-custom.info {
    border-color: var(--bs-info);
}
.btn-custom.info i {
    color: var(--bs-info);
}

/* Dropdown ellipsis */
.dropdown-ellipsis::after {
    content: unset;
}

/* Menu */
.nav-link:hover, .nav-link.active {
    color: #f96173 !important;
}

.main-nav .dropdown-menu {
    background-color: #1d173c;
}
.main-nav .dropdown-item {
    color: white;
}
.main-nav .dropdown-item:hover,
.main-nav .dropdown-item:active,
.main-nav .dropdown-item.active {
    color: #f96173;
    background-color: transparent;
}

.date-field label {
    margin-bottom: 0 !important;
}
.date-field input {
    width: unset;
    appearance: unset;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

.date-input {
    border: 1px solid #ced4da;
}

.date-input:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

/* FLASH */
.flash-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 90%;
    max-width: 600px;
}

.alert-dismissible:hover {
    cursor: pointer;
    opacity: 0.8;
}

