
    /* Thiết lập các thuộc tính cơ bản cho select */
    select {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
      appearance: none; /* Loại bỏ mũi tên mặc định của trình duyệt */
      background-color: white;
      width: 200px;
    }

    /* Thiết lập kiểu hover cho select */
    select:hover {
      border-color: #555;
    }

    /* Thiết lập kiểu focus cho select */
    select:focus {
      outline: none;
      border-color: #2196F3;
      box-shadow: 0 0 5px rgba(33, 150, 243, 0.7);
    }

    /* Thiết lập kiểu khi select có option được chọn */
    select:valid {
      color: #333;
    }

    /* Thiết lập kiểu cho option */
    option {
      background-color: #fff;
    }
    /* Reset một số giá trị mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style cho khung input */
.input-container {
    position: relative;
    width: 200px; /* Điều chỉnh chiều rộng theo ý muốn */
    margin: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: #007bff; /* Màu sắc khi focus */
}

/* Style cho label (nếu muốn sử dụng label) */
.input-label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #555;
    transition: transform 0.3s, font-size 0.3s, color 0.3s;
}

.input-field:focus + .input-label, .input-field:not(:placeholder-shown) + .input-label {
    transform: translateY(-75%) scale(0.75);
    font-size: 12px;
    color: #007bff; /* Màu sắc khi focus hoặc có dữ liệu */
}

/* nút check box */
.toggle-switch-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Căn giữa theo chiều ngang */
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px; /* Điều chỉnh kích thước của nút gạt */
  height: 20px; /* Điều chỉnh kích thước của nút gạt */
  margin-right: 10px; /* Khoảng cách giữa nút gạt và chữ */
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 34px; /* Điều chỉnh hình dạng của nút gạt */
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px; /* Điều chỉnh chiều cao của nút gạt */
  width: 16px; /* Điều chỉnh chiều rộng của nút gạt */
  left: 2px; /* Điều chỉnh vị trí của nút gạt */
  bottom: 2px; /* Điều chỉnh vị trí của nút gạt */
  background-color: white;
  border-radius: 50%;
  transition: .4s;
}

.toggle-switch input:checked + .slider {
  background-color: #2196F3;
}

.toggle-switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(20px); /* Di chuyển nút gạt khi được chọn */
}
