/* Стиль кнопок */
.btn-kasa {
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
  margin-top: 5px;	
}
.btn-kasa:hover {
  background-color: #e65c00;
  border-color: #e65c00;
  color: #fff;
}

/* Стиль input[type=file] */
input[type="file"]::file-selector-button {
  background-color: #ff6600;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}
input[type="file"]::file-selector-button:hover {
  background-color: #e65c00;
}

/* Спливаюче модальне вікно */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.modal-box {
  background: #ff6600;
  color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}
.modal-box.error {
  background: #dc3545; /* червоний для помилок */
}
@keyframes fadeIn {
  from {opacity:0; transform: scale(0.9);}
  to {opacity:1; transform: scale(1);}
}
  .form-control {
  height: 44px;
  }
label {
margin-top: 10px;
margin-bottom: 10px;
  
  }