/* Toast Container */
#toast-container {
  position: absolute;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 5px;
}

/* Toast Box */
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 300px;
  max-width: 500px;
  animation: fadeIn 0.3s ease;
  border-left: 4px solid transparent;
}

.toast.hide {
  animation: fadeOut 0.3s ease forwards;
}

/* Toast Icon */
.toast-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Toast Message */
.toast-message {
  font-size: 14px;
  color: #495057;
  line-height: 1.5;
}

/* Error/Warning Toast */
.toast.error .toast-icon {
  color: #f06548;
}

.toast.error {
  border-left-color: #f06548;
}

/* Success Toast */
.toast.success .toast-icon {
  color: #0ab39c;
}

.toast.success {
  border-left-color: #0ab39c;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.9);
  }
}


.bg-opacity-25 {
    background-color: rgba(var(30,33,41), .25) !important;
}
.bg-dark {
    --bs-bg-rgb-color: var(30,33,41);
}
.page-loader {
    background-color: var(--bs-body-bg);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner-border {
    width: 1rem !important;
    height: 1rem !important;
}

@media (max-width: 600px){
  .company-name-header {
    display: none;
  }
  .header-item {
    height: 70px;
  }
}