/* Bootstrap merging css*/
body {
  font-family: Arial, sans-serif;
  background-color: #f5f6fa;
  padding: 0%;
  direction: ltr;
  height: auto;
}

.card{
  width: 786px;
}

.our-bg{
  background-color: #BF2A22;
}

label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

/* Inputs */
input[type="text"],
input[type="number"],
select,
textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #BF2A22;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
}

/* Buttons (base) */
button,
.button {
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
  margin-top: 10px;
  background-color: #BF2A22;
}

.border-bottom-only {
  border: none;
  border-bottom: 2px solid #BF2A22;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
}


.border-bottom-only:focus {
  border-bottom: 2px solid #BF2A22;
  outline: none;
  box-shadow: none;
}


.form-check-input:checked {
    background-color: #28a745;
    border-color: #28a745;
  }


.search-container {
  background-color: #ffffff;
  padding: 12px;
  width: 100%;
  height: auto;
  margin: auto;
  border: 1px solid #Bf2a22;
  border-radius: 8px;
}

.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.rating input {
  display: none;
}
.rating label {
  font-size: 2rem;
  color: #ddd;
  cursor: pointer;
}
.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: gold;
}

.toast-msg {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.toast-msg.show {
  opacity: 1;
  transform: translateY(0);
}


.box {
  width: 40px;
  height: 40px;
  border: 1px solid #2f3640;
  border-radius: 8px;
}

#red {
  background-color: red;
}

#black {
  background-color: black;
}

#gray {
  background-color: gray;
}

#yellow {
  background-color: yellow;
}

#blue {
  background-color: rgb(48, 186, 224);
}

#green {
  background-color: green;
}


.accordion-button.our-bg {
  background-color: var(--our-bg-color) !important; 
  color: #fff !important;
}

.accordion-button:not(.collapsed).our-bg {
  background-color: var(--our-bg-color) !important;
  color: #000 !important;
}


@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.form-control:focus {
  outline: none;
  box-shadow: none; /* Remove any default focus box-shadow */
}