.white-icon {
    fill: white; /* or color: white; depending on the structure of your SVG */
}

/* Add this CSS to your stylesheet or within a <style> tag */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Show the toggle button */
    .navbar-toggler {
        display: block;
    }

    /* Ensure the navbar is collapsed initially on tablet screens */
    .navbar-collapse {
        display: none !important;
    }

    .navbar-collapse.collapse.show {
        display: block !important;
    }
}

/* General styling for smaller screens to ensure the button is visible */
@media (max-width: 767px) {
    .navbar-toggler {
        display: block;
    }
}
/* Assurez-vous que le sous-menu s'affiche à droite */
.dropdown-menu .dropdown-submenu {
    position: relative;
  }

  .dropdown-menu .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 300px;
  }

.identifier{
    background-color:#009640 !important;
    color: rgb(250, 250, 250) !important;
}
.identifier:hover{
    color: #009640 !important;
    background-color: white !important;
    border: 1px solid #009640 !important;

}
.card-value:hover{
    color:white;
    background-color: #0b4d12d2;
}
/* Large Screens */
@media (min-width: 992px) {
    .connexion{
        margin-left: 20px;
    }.icon_header{
        margin-left: 20px;
    }
    .search {
        width: 36% !important;
    }
    .f-title {
        font-size: 53px;
    }
    .f-text {
        font-size: 26px;
    }
}

/* Mobile screen */

@media (max-width: 599px) {
    .f-title {
        font-size: 30px; /* Adjust this size as needed for mobile */
    }
    .f-text {
        font-size: 10px; /* Adjust this size as needed for mobile */
    }
}
.image-bg{
    background-image: url(' ../imgs/field-covered-grass-colorful-flowers-sunlight.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    position: relative;
    filter: brightness(80%) contrast(150%) grayscale(30%);
}
.bg-login {
    background-image: url('../imgs/loginBg.jpg');
    background-size: cover; /* This makes the image cover the entire element */
    background-position: center; /* This centers the image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* This prevents the image from repeating */
}
.bg-devis {
    background-image: url('../imgs/devisBg.jpg');
    background-size: cover; /* This makes the image cover the entire element */
    background-position: center; /* This centers the image */
    background-repeat: no-repeat;
    background-attachment: fixed; /* This prevents the image from repeating */
}

.image-circle {
    width: 100px !important; /* Adjust size as needed */
    height: 100px !important; /* Adjust size as needed */
    border-radius: 50% !important;
    overflow: hidden;
}

.custom-button {
    /* Reset default button styles */
    background-color: transparent;
    border: none;
    color: inherit;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    font-size: 16px;
    text-decoration: underline;
}

.image {
    width: 75% !important; /* Adjust size as needed */
    height: 50% !important; /* Adjust size as needed */
}
.bg-card {
    background-color: #9bc68a !important;
}
.bg-green {
    background-color: #0B4D12;
}
.bg-LightGreen {
    background-color: #74C732;
}
.text-greendark{
    color: #12771c !important;
}
.custom-green:hover {
    color: #08f33b; /* Couleur plus foncée au survol */
}
@media (max-width: 768px) {
    .asideblog {
        display: none;
    }
}
/* Style global pour l'aside */
.asideblog {
    background-color: #f8f9fa; /* Couleur de fond douce */
    border-radius: 15px; /* Coins arrondis */
    overflow: hidden; /* Assure que rien ne dépasse */
    height: auto; /* Auto-ajustement basé sur le contenu */
}

/* Images responsives dans les blogs récents */
.recent-blog-img {
    width: 100%; /* Assure que les images s'adaptent */
    height: auto; /* Conserve les proportions */
    border-radius: 15px; /* Coins arrondis pour les images */
}

/* Style pour les blocs de chaque blog */
.blog-card {
    padding: 10px;
    background-color: #ffffff; /* Fond blanc pour contraste */
    border: 1px solid #ddd; /* Légère bordure */
    border-radius: 15px;
    height: auto; /* Auto-ajustement */
}

/* Gestion des textes pour éviter qu'ils dépassent */
.blog-card .card-text {
    overflow: hidden; /* Cache le contenu qui dépasse */
    text-overflow: ellipsis; /* Ajoute "..." si besoin */
    display: -webkit-box; /* Permet la limitation de lignes */
    -webkit-line-clamp: 3; /* Affiche 3 lignes maximum */
    -webkit-box-orient: vertical;
}

.card-choice:hover {
  background-image: linear-gradient(to right, rgb(12, 95, 9), rgb(115, 192, 112));
  color: white !important;
}


.card-choice{
    color: #009640;
}

.bg-black {
    background-color: #051007;
}
.bg-gray {
    background-color: #CBDDC3 !important;
}
.bg-white {
    background-color: #FFFFFF;
}

.text-black {
    color: #000000;
}
.text-green {
    color: #74C732;
}
.text-Dgreen {
    color: #009640;
}
.text-Darkgreen {
    color: #0B4D12;
}
.text-orange {
    color: #E73C19;
}
.w-400 {
    width: 400px;

}

.banner {
    /* background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)),
                url('../imgs/banner.jpg') no-repeat; */
    background-size: cover;
    background-position: top;
    margin-top: 2.5%;
    width: 100%;
    padding: 50px;
}
.search-input, .search-select, .search-button {
    font-size: 1.25rem;
    padding: 15px;
}

.search-input {
    height: 50px;
    width: 300px;
}

.search-select {
    height: 50px;
}

.search-button {
    font-size: 1.5rem;
    padding: 12px 20px;
}

.search-button img {
    width: 25px; /* Ajuste la taille de l'icône */
}

@media (max-width: 768px) {
    .search-input, .search-select, .search-button {
        font-size: 1rem;
        padding: 12px;
    }
}

.animated-div {
    transition: all 0.3s ease;
}

.animated-div:hover {
    transform: translateY(-5px);
}
.recent-blogs {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.aside-title {
    font-size: 18px;
    font-weight: bold;
    color: #74C732;
    margin-bottom: 20px;
    text-align: center;
}

.recent-blog-card {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.recent-blog-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.recent-blog-img-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 10px;
    margin-right: 15px;
}

.recent-blog-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}


.recent-blog-content {
    flex-grow: 1;
}

.recent-blog-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.recent-blog-link {
    font-size: 12px;
    color: #74C732;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.recent-blog-link:hover {
    color: #529520;
    text-decoration: underline;
}



.f-size-50 {
    font-size: 50px;
}
.f-size-40 {
    font-size: 40px;
}
.f-size-30 {
    font-size: 30px;
}

.heart-icon-container {
    opacity: 0;
    transition: opacity 0.5s;
}

.card:hover .heart-icon-container {
    opacity: 1;
}

html,
body {
  font: 100%/1.5 Verdana, sans-serif
}
#wrapper {
  margin: 0 auto;
  display: block;
  width: 960px;
}
.page-header {
  text-align: center;
  font-size: 1.5em;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  margin: 30px 0
}
#pagination {
  margin: 0;
  padding: 0;
  text-align: center
}
#pagination li {
  display: inline
}
#pagination li a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  color: #000
}

/* Active and Hoverable Pagination */
#pagination li a {
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s
}
#pagination li a.active {
  background-color: #4caf50;
  color: #fff
}
#pagination li a:hover:not(.active) {
  background-color: #ddd;
}


/* .btn-black {
color: #fff;
background-color: #1E1E1E;
border-color: #1E1E1E;
}
.btn-black:hover {
color: #fff;
background-color: #1E1E1E;
border-color: #1E1E1E;
}
.btn-check:focus + .btn-black, .btn-black:focus {
color: #fff;
background-color: #1E1E1E;
border-color: #1E1E1E;
box-shadow: 0 0 0 0.25rem rgba(14, 14, 14, 0.5);
}
.btn-check:checked + .btn-black, .btn-check:active + .btn-black, .btn-black:active, .btn-black.active, .show > .btn-black.dropdown-toggle {
color: #fff;
background-color: #1E1E1E;
border-color: #1E1E1E;
}
.btn-check:checked + .btn-black:focus, .btn-check:active + .btn-black:focus, .btn-black:active:focus, .btn-black.active:focus, .show > .btn-black.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(14, 14, 14, 0.5);
}
.btn-black:disabled, .btn-black.disabled {
color: #fff;
background-color: #131212;
border-color: #131212;
} */


