#login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 2rem);
  height: calc(100vh - 2rem);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#login-container .card {
  width: 300px;
}

.bx {
  transform: translateY(-2px);
}

.icon i {
  font-size: 14px;
  color: #27272a;
  transform: translateY(-2px);
  opacity: 1;
}
.icon i.bx-xl {
  font-size: 20px;
}

.nav-link.active .icon i {
  color: white;
}

.input-group-text i {
  color: #d2d6da !important;
}

.form-control::placeholder {
  color: #d2d6da; /* Changez cette valeur pour la couleur souhaitée */
}

.add-car {
  padding: 15px;
  display: block;
  width: 100%;
  border-radius: 10px;
  color: #d2d6da;
  border: 2px dashed #d2d6da;
}

.card-header h6 {
  border-left: 5px solid #f97316;
  padding-left: 10px;
}

.fc-toolbar-title {
  color: #f97316;
}

.fc .fc-button {
  color: #fff;
  letter-spacing: 0.0025rem;
  box-shadow: 0 4px 7px -1px rgba(0, 0, 0, 0.11),
    0 2px 4px -1px rgba(0, 0, 0, 0.07);
  background-color: #27272a !important;
  font-size: 0.75rem;
  font-weight: 700 !important;
  text-transform: capitalize;
  padding: 0.75rem 1.5rem !important;
  opacity: 1 !important;
  height: auto !important;
  border-radius: 0.5rem;
}

.fc-event {
  overflow: hidden;
  background: #27272a !important;
  border: none !important;
  border-radius: 0.5rem !important;
  margin-bottom: 5px;
}

.fc-event-main {
  background: #f97316 !important;
}

.fc-event .fc-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 5px 5px !important;
}

.fc-day-today .fc-daygrid-day-frame {
  background-color: #e8e8e8;
}

#map-container {
  overflow: hidden;
}

#map {
  height: calc(100vh - 160px) !important;
  width: 100%;
}

.pin-car {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f97316;
  border: 3px solid #f9d0b4;
  border-radius: 15px;
}

.pin-car i {
  color: #f9d0b4;
}

.pin-label {
  visibility: hidden;
  display: block;
  position: absolute;
  left: 110%;
  background-color: #27272a;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  border: 3px solid #f9d0b4;
}

.pin-label.active {
  visibility: visible;
}

.pin-car::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f97316;
}

.image-preview {
  display: block;
  width: 100%;
  border-radius: 10px;
  color: #d2d6da;
  border: 2px dashed #d2d6da;
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

