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;
    padding-top: 80px;
}

/*.left-column {
    background-image: url('../images/homeforest.jpg');
    background-size: cover;
    background-position: center;
    color: white;*/ /* Optionally, set text color */
/*}*/


/* //todo ajouter un style à la grille contenant bouton?
 .btn-cell-height {
    height: 30px;*/ /* Définissez la hauteur des cellules avec les boutons */
/*}*/

.btn {
    margin: 2px;
}

.btn-sm {
    margin: 2px;
}

.btn-orange {
    background-color: #ffb733;
    border-color: #ffb733;
}

.toolbarElementHighlight {
    color: darkorange !important;
    font-style: italic;
    text-decoration: underline;
}

.hidden {
    display: none;
}

.navbar-nav .nav-link {
    font-size: 20px;
    margin-left: 20px;
}

.navbar-backgroundcolorpg {
    background-color: lightgray !important;
}

.navbar-backgroundcolorpgdev {
    background-color: darkred !important;
}

.font-bold {
    font-weight: 700 !important;
}

.vertical-scrollable-parent {
    position: relative;
    width: 100%;
    height: 100%;
}

.vertical-scrollable {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.mr-1 {
    margin-right: 0.5rem !important
}

.ml-1 {
    margin-left: 0.5rem !important
}

.mb-2 {
    margin-bottom: 1rem !important
}

.mb-3 {
    margin-bottom: 1.5rem !important
}

.mb-4 {
    margin-bottom: 2rem !important
}

.mr-2 {
    margin-right: 1rem !important
}

.ml-2 {
    margin-left: 1rem !important
}

.mt-1 {
    margin-top: 0.5rem !important
}

.mt-2 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 2rem !important
}

.mt-6 {
    margin-top: 3rem !important
}

.text-dev {
    color: white !important;
}

.customAlert {
    border-radius: 4px;
}

.ml-auto {
    margin-left: auto !important;
}

.mr-auto {
    margin-right: auto !important;
}

/* enlever le border pour les cellules modifiées dans dxDataGrid */
.dx-datagrid-rowsview .dx-data-row .dx-cell-modified.dx-cell-modified::after {
    border-width: 0px !important;
    border-color: transparent !important;
}

.errorAccessDenied {
    color: red;
    font-weight: bold;
    font-size: 24px;
}

.navbarPGAdmin {
    background-color: #dff0d8 !important;
}

.noItemMessage {
    align-items: center;
    cursor: pointer;
}

.noItemArrow {
    font-size: 2rem !important;
    cursor: pointer;
}

.bounce {
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.shakelight {
    animation: shakelight 2s ease infinite;
}

@keyframes shakelight {
    70% {
        transform: translateY(0%);
    }

    80% {
        transform: translateY(-15%);
    }

    90% {
        transform: translateY(0%);
    }

    95% {
        transform: translateY(-7%);
    }

    97% {
        transform: translateY(0%);
    }

    99% {
        transform: translateY(-3%);
    }

    100% {
        transform: translateY(0);
    }
}

hr.solid {
    border-top: 1px solid black;
}

.card-info {
    border-color: silver;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
}

.m-1 {
    margin: 1rem !important;
}