@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;500;600;700&display=swap");
:root {
  --bs-primary-rgb: 39, 51, 101;
  --bs-bg-opacity: 1;
  --bs-secondary-rgb: 140, 150, 198;
  --bs-info-rgb: 79, 141, 202;
}

body {
  font-family: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

.row {
  margin: 0;
  padding: 0;
}

.btn-primary {
  background-color: rgb(var(--bs-primary-rgb));
  border-color: rgb(var(--bs-primary-rgb));
}

.btn-primary:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.8);
  border-color: rgba(var(--bs-primary-rgb), 0.8);
}

.btn-secondary {
  background-color: rgb(var(--bs-secondary-rgb));
  border-color: rgb(var(--bs-secondary-rgb));
}

.btn-secondary:hover {
  background-color: rgba(var(--bs-secondary-rgb), 0.8);
  border-color: rgba(var(--bs-secondary-rgb), 0.8);
}

.form-control, .btn {
  border-radius: 0.8rem;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}

.btn-white:hover {
  background-color: #dddddd;
  border-color: #dddddd;
  color: #000;
}

btn-close {
    --bs-btn-close-color: #ffffff !important;
}



.card {
  border-radius: 1rem;
}

.card-header {
  border-radius: 1rem 1rem 0 0;
}

.card-footer {
  border-radius: 0 0 1rem 1rem;
}

.card-footer:last-child {
  border-radius: 0 0 1rem 1rem;
}

.h-100px {
  height: 100px;
}

.h-200px {
  height: 200px;
}

.dataTables_filter {
  margin-bottom: 20px;
}

.nav-item {
  display: block;
  height: 100%;
  display: flex;
  align-items: center;
  color: #000;
  text-decoration: none;
}

.nav-active {
  color: rgb(40, 167, 9);
  border-bottom: 3px solid rgb(40, 167, 9);
}

/* Ajoutez ces styles dans votre fichier CSS */
form {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

form.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

form.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scrolling-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  margin: 0 -10px;
}

.input-border-bottom {
  border: none;
  border-bottom: 1px solid rgb(var(--bs-primary-rgb));
  border-radius: 0;
}

.be-1px-primary {
  border-right: 1px solid rgb(var(--bs-primary-rgb));
}

.checkbox-primary:checked {
  background-color: rgb(var(--bs-primary-rgb));
  border-color: rgb(var(--bs-primary-rgb));
}

.hover-effect {
    background-color: #273365; /* Original color */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.hover-effect:hover {
    background-color: #30B6E3; /* New color on hover */
}
a{
    text-decoration: none;
    color: black;
}

.rounded-custom{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 20px;
    border-top-left-radius: 6px;
    border-top-right-radius: 20px;
}

.position-overlap {
    position: absolute;
    top: -10%;
    left: 0;
    z-index: 1;
}
.text-bleu-custom {
    color: #273365;
}
.text-bleu-custom:hover {
    color: #30B6E3;
}

.text-bleu-custom .bullet {
    color: #000000;
}

.text-subTitle{
    color: #6b6c75;
}

.border-right {
    border-right: 2px solid #ccc; /* Ajustez la couleur et l'épaisseur selon vos besoins */
    padding-right: 15px; /* Espace entre le contenu et la bordure */
}
/*# sourceMappingURL=custom.css.map */


/* Submenu (children) */
.children-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 100%; /* Positioned to the right of the parent */
    margin-left: 10px;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px; /* Adjust the width as needed */
    z-index: 1000;
}

/* Each child item */
.children-menu li {
    padding: 5px 0;
}

/* Links for child items */
.children-menu a {
    text-decoration: none;
}


/* Description for child items */
.children-menu small {
    display: block;
    color: #6c757d;
    font-size: 0.85em;
}
