*::-webkit-scrollbar {
  width: 5px;
}

*::-webkit-scrollbar-track {
  background: #8f8f8f;
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
  background-color: rgb(212 212 212);
  border: 1px solid #8f8f8f;
  border-radius: 20px;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: #505050;
  border-radius: 10px;
  border-radius: 0 !important;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-color: rgb(190 190 190);
  border: 2px solid #505050;
  border-radius: 20px;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0,0,0,.1);
  min-height: 5rem;
  background-color: #f8f9fa;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1030;
}

.main {
  flex: 1;
  margin-top: 5rem !important;
}

/* Autres styles */
.navbar-brand img {
  width: 50px;
}

.event-card {
  margin-bottom: 20px;
  transition: transform 0.3s ease-in-out;
}

.event-card:hover {
  transform: translateY(-5px);
}

.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  margin-top: auto;
}


@media (max-width: 767px) {
  .footer .row:last-child {
      flex-direction: column-reverse;
  }
  .footer .row:last-child > div {
      margin-bottom: 10px;
  }
}

.min-vh-76 {
  min-height: 76vh !important;
  }

.min-vw-90 {
  min-width: 90vw !important;
}

.w-30 {
  width: 30% !important;
}

.w-80 {
  width: 80% !important;
}

.border-b {
  border-bottom: 1px #dadada solid !important;
}

.border-l {
  border-left: 1px #dadada solid !important;
}

.border-r {
  border-right: 1px #dadada solid !important;
}

.border-t {
  border-top: 1px #dadada solid !important;
}

hr {
  border-top: 1px solid rgb(0 0 0 / 90%);
}