:root {
  --primary: #1a4480;
  --primary-light: #2d5b9d;
  --primary-dark: #0d2a4d;
  --accent: #c8102e;
  --accent-light: #e63956;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --light-gray: #e9ecef;
  --border: #dee2e6;
  --gray: #6c757d;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --sidebar-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  z-index: 1050;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transform: translateX(110%);
  transition: transform 0.3s ease-in-out;
}

.toast.show {
  transform: translateX(0);
}

.toast i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.toast-success {
  background-color: var(--success);
}

.toast-error {
  background-color: var(--danger);
}

.toast-info {
  background-color: var(--primary);
}

.toast-warning {
  background-color: var(--warning);
  color: var(--dark);
}

/* Print Styles */
@media print {
  body * {
    visibility: hidden;
  }

  #applicationModal,
  #applicationModal * {
    visibility: visible;
  }

  #applicationModal {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
  }

  .modal-content {
    border: none;
    box-shadow: none;
  }

  .modal-header,
  .modal-footer {
    display: none;
  }

  .modal-body {
    padding: 20px;
    font-size: 12pt;
  }

  .detail-row {
    display: flex;
    margin-bottom: 10px;
  }

  .detail-label {
    font-weight: bold;
    min-width: 200px;
  }

  .detail-value {
    flex: 1;
  }

  .toast {
    display: none !important;
  }
}
