/* ===============================
   GLOBAL STYLES
=================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    background-color: #fff;
}

.show-error-message {
    display: flex !important;
}

.error-input {
  border: 1px solid #990000 !important;
}

.message-error-pages {
    background-color: #fee9ea;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    font-weight: 600;
}

.message-error-pages img {
  width: 35px;
  margin-right: 10px;
}

.hide-option {
    display: none !important;
}

.show-option {
    display: flex !important;
}

.custom-select {
  position: relative;
  width: 130px;
  height: 48px;
  background: white;
  border: 1px solid #8f8f8f;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border 0.2s ease;
  outline: none;
  background-color: #FFF;
  padding: 0px !important;
}

.custom-select:hover {
  border: 1px solid #222222;
}

.custom-select:focus {
  border: 2px solid #127277;
}

.select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0px 12px;
  color: #727272;
  font-size: 16px;
}

.arrow {
  transition: transform 0.3s ease;
  color: #127277;
  font-size: 20px;
}

.custom-select.open .arrow {
  transform: rotate(-180deg);
}

/* Dropdown list (hidden by default) */
.select-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 4px;
  display: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.custom-select.open .select-options {
  display: block;
}

.select-options li {
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: background 0.2s ease;
  font-size: 16px;
}

.select-options li:hover {
  background: #f5f5f5;
}

.select-options li.active {
  background: #ecf5f5;
  color: #222222;
  font-weight: bold;
}

.select-options li.active i {
  color: #127277;
  font-size: 16px;
}

/* ===============================
   GLOBAL STYLES
=================================*/