.collapsible {
  background-color: #0092CA;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #0092CA;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.collapsible:after {
  content: '\2935';
  /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: white;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2934";
  /* Unicode character for "minus" sign (-) */
}

.form-btn {
  background-color: #3e8e41;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.form-btn:hover,
.form-btn:focus {
  background-color: #40ad12;
}

.form-flex-block,
.footer-flex-block {
  display: flex;
  justify-content: space-between;
}

.form-inline-block {
  position: relative;
  display: inline-block;
  margin-left: auto;
}

.promo-icon:hover {
  color: #0092CA;
}

.website-blue-color {
  color: #0092CA;
}

a.website-blue-color {
  color: #0092CA;
  text-decoration: underline;
}

a.website-blue-color:visited {
  color: #0092CA;
}

a.website-blue-color:hover {
  color: #0092CA;
}

a.website-blue-color:active {
  color: #0092CA;
}

.page__meta-icons-sep::before {
  content: ' ';
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.blur-text {
  background-color: rgba(238, 238, 238, 0.4);
}

.availability-block {
    border: 2px solid #f2f2f2; /* Burgundy color */
    padding: 10px;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't exceed the full width */
    text-align: center; /* Centers the text horizontally */
    background-color: #f2f2f2; /* Optional: Makes it stand out */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2),
                inset 0px 1px 3px rgba(255, 255, 255, 0.6); /* 3D shadow effect */
}
