/* src/global_styles.css */
html {
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  line-height: 1.5;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}
.modal-container {
  background-color: white;
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.form-container {
  width: 100%;
}
.form-field {
  margin-bottom: 1rem;
}
.form-field label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
button {
  background-color: #007bff;
  color: white;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.button-group {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.cancel-button {
  background-color: #6c757d;
}
.cancel-button:hover {
  background-color: #5a6268;
}
.form-field input.ng-invalid.ng-touched {
  border-color: #dc3545;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .button-group {
    flex-direction: column;
  }
  .button-group button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .modal-container {
    padding: 1rem;
  }
  .form-field input,
  .form-field select {
    padding: 0.5rem;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-47ANJRT7.css.map */
