.form-container {
    display: flex;
    width: 50%;
    padding: 32px;
    align-self: stretch;
    align-items: center;
    align-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    justify-content: space-between;
    background: var(--Main-white, #FFF);

    /* Shadow Sing in */
    box-shadow: 4px 6px 15px 0px rgba(0, 0, 0, 0.25);
}

.equipment-select {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Учитывает padding в ширине */
}

.main{
    display: flex;
    width: 100%;
  padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background: #FFF;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Учитывает padding в ширине */
}

.select-wrapper {
    position: relative;
}

.equipment-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px; /* Место для стрелки */
}

.equipment-select:focus {
    outline: 2px solid #D25122;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #191919;
    font-size: 12px;
}

.Email {
    color: #191919;
    font-size: 20px;
    font-weight: 500;
    font-family: "TT Hoves";
    margin: 0;
}

.eq-con{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.header-eq-con{
    display: flex;
    gap: 4px;
    flex-direction: column;
}


.in-con{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.main:focus {
    outline: 2px solid #F88613;
    box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.3);
}

.message-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  
.message-label {
    display: block;
    color: #191919;
    font-family: "TT Hoves";
    font-size: 20px;
    font-weight: 500;
  }

.message-input {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
    font-family: "TT Hoves";
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
    box-sizing: border-box;
    
}
  
.message-input:focus {
    outline: 2px solid #D25122;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
}
  
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 36px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ACACAC;
    transition: .4s;
    border-radius: 34px;
  }
  
.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 32px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
.toggle-switch input:checked + .slider {
    background-color: #F88613;
}
  
.toggle-switch input:checked + .slider:before {
    transform: translateX(25px);
}

.eq-con {
    position: relative;
}

.text-label {
    display: block;
    color: #191919;
    /* H4 */
    font-family: "TT Hoves";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.from-con {
    display: flex;
    gap: 32px;
}

.fromto {
    flex: 1;
    display: flex;
    gap:8px;
    position: relative;
    flex-direction: column;
}

.from-to {
    display: block;
    color: #191919;
    /* Text */
    font-family: "TT Hoves";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.main {
    width: 100%;
    padding: 16px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'TT Hoves';
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.main:focus {
    outline: 2px solid #D25122;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.3);
    border-color: transparent;
}

.error {
    border-color: #ff4444 !important;
}


.calendar-container {
    box-sizing: content-box;
    display: none;
    position: absolute;
    width: 100%;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 4px 6px 15px 0px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    top: calc(100% + 16px);
    left: 0;
    gap: 16px;
}
@media (max-width: 320px){
    .calendar-container{
    width: 100%;
    }
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    /* Signatures */
    font-family: "TT Hoves";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.month-year {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #191919;
}

.nav-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 10px;
    color: #191919;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.nav-button:hover {
    background-color: #f5f5f5;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 500;
    color: #F88613;
    font-size: 12px;
    /* Signatures */
    font-family: "TT Hoves";
    font-style: normal;
    line-height: normal;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.days div {
    box-sizing: unset;
    padding: 8px 0;
    text-align: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #191919;
    position: relative;
    height: 24px;
    line-height: 24px;
    font-family: "TT Hoves";
}

.days div:hover:not(.disabled):not(.disabled-date) {
    background-color: #f0f0f0;
}

.days div.selected {
    background-color: #F88613;
    color: white;
    font-weight: 500;
}

.days div.in-range:not(.selected) {
    background-color: rgba(248, 134, 19, 0.1);
}

.days div.today {
    font-weight: bold;
}

.days div.today:not(.selected)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #F88613;
    border-radius: 50%;
}

.days div.disabled {
    color: #ccc;
    cursor: default;
}

.days div.disabled-date {
    color: #ccc;
    cursor: not-allowed;
}

.date-error {
    color: #EF3E3E;
    font-family: "TT Hoves";
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    display: none;
}

@media (max-width: 600px) {
    .from-con {
        flex-direction: column;
    }
    
    .calendar-container {
        box-sizing: border-box;
    }
}

.labeltable{
    color: var(--Text-dark, #191919);

    /* Text */
    font-family: "TT Hoves";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.tabletext{
    color: var(--Text-dark, #191919);
    /* Signatures */
    font-family: "TT Hoves";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border-radius: 8px;
    background: var(--Main-white, #FFF);
    box-sizing: border-box; /* Решение! */
    max-width: 150px;
    padding: 10px;
    border: 1px solid #D25122;
}
.custom-select {
  position: relative;
  width: 100%;
}

.select-header {
        background: #FFF;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 12px 16px;
    border: none;
    border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
      box-sizing: border-box; /* Учитывает padding в ширине */
          transition: all 0.3s ease;
              width: 100%;
}


.option {
  padding: 12px 16px;
  cursor: pointer;
}

.option:hover {
  background: #f5f5f5;
}

.arrow {
  transition: transform 0.2s;
}

.custom-select.active .arrow {
  transform: rotate(180deg);
}

.custom-select.active .dropdown-options {
  display: block;
}