/* src/styles.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background-color: #E8F4F8;
  color: #333;
}
.container {
  width: 100%;
  margin: 0;
  padding: 0;
}
.form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 30px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #555;
}
input[type=text],
input[type=email],
input[type=password],
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #0096C7;
}
button,
.btn {
  padding: 12px 24px;
  background:
    linear-gradient(
      135deg,
      #0077BE 0%,
      #0096C7 100%);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
button i,
.btn i {
  font-size: 1rem;
  color: white;
}
button:hover,
.btn:hover {
  background:
    linear-gradient(
      135deg,
      #005A8F 0%,
      #0077BE 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3);
}
button:disabled,
.btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-secondary {
  background-color: #757575;
}
.btn-secondary:hover {
  background-color: #616161;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
th {
  background:
    linear-gradient(
      135deg,
      #0077BE 0%,
      #0096C7 100%);
  color: white;
  font-weight: 600;
}
tr:hover {
  background-color: #E0F7FA;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.alert.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.alert.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.alert.alert-info {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}
::ng-deep .ngx-spinner-overlay {
  background-color: rgba(255, 255, 255, 0.9) !important;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
::ng-deep .ngx-spinner-overlay .loading-text {
  color: #0077BE !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
}
.spinner {
  border: 4px solid #E0F7FA;
  border-top: 4px solid #0096C7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bi {
  color: #0077BE;
}
.sidebar .bi,
.sidebar-header .bi {
  color: white;
}
.summary-card .card-icon .bi {
  color: inherit;
}
button,
.btn,
input[type=button],
input[type=submit],
input[type=reset] {
  text-align: center !important;
  justify-content: center !important;
}
::ng-deep .swal2-container {
  z-index: 10001 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
::ng-deep .swal2-popup {
  border-radius: 8px !important;
  padding: 2rem !important;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif !important;
  max-width: 500px !important;
  width: 90% !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  overflow: visible !important;
  max-height: 90vh !important;
  display: flex !important;
  flex-direction: column !important;
}
::ng-deep .swal2-title {
  color: #0077BE !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}
::ng-deep .swal2-html-container {
  color: #333 !important;
  font-size: 1rem !important;
  margin: 1rem 0 !important;
  line-height: 1.5 !important;
  overflow: visible !important;
  position: relative !important;
  min-height: auto !important;
}
::ng-deep .swal2-select {
  width: 100% !important;
  max-width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #ddd !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  margin: 10px 0 !important;
  transition: border-color 0.3s !important;
  background-color: white !important;
  color: #333 !important;
  box-sizing: border-box !important;
  position: relative !important;
  z-index: 1 !important;
}
::ng-deep .swal2-select:focus {
  outline: none !important;
  border-color: #0096C7 !important;
  box-shadow: 0 0 0 3px rgba(0, 150, 199, 0.1) !important;
}
::ng-deep .swal2-container {
  overflow: visible !important;
  padding: 1em !important;
}
::ng-deep select.swal2-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 35px !important;
}
::ng-deep .swal2-popup select.swal2-select:focus {
  z-index: 10002 !important;
}
::ng-deep .swal2-input {
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
}
::ng-deep .swal2-input-label {
  display: block !important;
  margin-bottom: 0.5rem !important;
  color: #555 !important;
  font-weight: 500 !important;
}
::ng-deep .swal2-confirm {
  background:
    linear-gradient(
      135deg,
      #0077BE 0%,
      #0096C7 100%) !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 12px 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 119, 190, 0.2) !important;
}
::ng-deep .swal2-confirm:hover {
  background:
    linear-gradient(
      135deg,
      #005A8F 0%,
      #0077BE 100%) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 119, 190, 0.3) !important;
}
::ng-deep .swal2-confirm:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.2) !important;
}
::ng-deep .swal2-cancel {
  background-color: #6c757d !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 12px 24px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  transition: all 0.3s !important;
  margin: 0 !important;
  box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2) !important;
}
::ng-deep .swal2-cancel:hover {
  background-color: #5a6268 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3) !important;
}
::ng-deep .swal2-cancel:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.2) !important;
}
::ng-deep .swal2-actions {
  gap: 10px !important;
  margin-top: 1.5rem !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
::ng-deep .swal2-validation-message {
  color: #f44336 !important;
  font-size: 0.9rem !important;
  margin-top: 0.5rem !important;
  text-align: left !important;
}
::ng-deep .swal2-loader {
  border-color: #E0F7FA transparent #E0F7FA transparent !important;
  border-top-color: #0096C7 !important;
}
::ng-deep .swal2-icon {
  margin: 1rem auto 1.5rem !important;
}
::ng-deep .swal2-backdrop-show {
  background-color: rgba(0, 0, 0, 0.4) !important;
  overflow: visible !important;
}
::ng-deep .swal2-container.swal2-backdrop-show {
  overflow: visible !important;
  padding: 1.5em !important;
}
::ng-deep body.swal2-height-auto {
  height: auto !important;
  overflow: visible !important;
}
::ng-deep .swal2-popup select.swal2-select option {
  padding: 8px 12px !important;
  background-color: white !important;
  color: #333 !important;
}
::ng-deep .swal2-popup .swal2-content {
  overflow: visible !important;
  position: relative !important;
}
::ng-deep .swal2-popup .swal2-input-container {
  position: relative !important;
  overflow: visible !important;
  z-index: 1 !important;
  margin-bottom: 1rem !important;
}
::ng-deep .status-radio-container {
  width: 100% !important;
  margin: 0 !important;
}
::ng-deep .status-radio-option {
  display: flex !important;
  align-items: center !important;
  padding: 12px 16px !important;
  margin: 8px 0 !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  background: white !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
::ng-deep .status-radio-option:hover {
  transform: translateX(4px) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
::ng-deep .status-radio-option input[type=radio] {
  margin-right: 12px !important;
  width: 20px !important;
  height: 20px !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}
::ng-deep .status-radio-option span {
  font-size: 16px !important;
  font-weight: 500 !important;
  flex: 1 !important;
}

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