.my-alert {
  position: fixed !important;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: 90%;
  max-width: 500px;
}

input[type="checkbox"] {
  width: 25px;
  height: 25px;
  cursor: pointer;
  border-radius: 10px;
}

.alert-primary {
  background: rgb(220, 218, 243);
}

.alert-secondary {
  background: rgb(218, 232, 243);
}

.alert-success {
  background: rgb(218, 243, 218);
}

.alert-info {
  background: rgb(218, 243, 242);
}

.alert-warning {
  background: rgb(243, 240, 218);
}

.alert-danger {
  background: rgb(243, 222, 218);
}

.alert-light {
  background: rgb(255, 255, 255);
}

.alert-dark {
  background: rgb(179, 177, 177);
}

@media print {
  @page {
    size: A4 landscape; /* Force A4 landscape */
    margin: 10mm;
  }

  /* Force all bootstrap grid columns to use desktop layout */
  .col-sm-6,
  .col-md-6,
  .col-lg-6,
  .col-xl-6,
  .col-sm-12,
  .col-md-12,
  .col-lg-12,
  .col-xl-12,
  .col-sm-3,
  .col-md-3,
  .col-lg-3,
  .col-xl-3,
  .col-sm-4,
  .col-md-4,
  .col-lg-4,
  .col-xl-4 {
    float: left !important;
    width: auto !important;
    max-width: none !important;
  }

  /* Example: force col-xl to always apply */
  .col-xl-3 {
    width: 25% !important;
  }
  .col-xl-4 {
    width: 33.3333% !important;
  }
  .col-xl-6 {
    width: 50% !important;
  }
  .col-xl-12 {
    width: 100% !important;
  }

  /* Make sure flex layouts don’t collapse */
  .row {
    display: flex !important;
    flex-wrap: nowrap !important;
  }
}

.text-line-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 1;
}

.text-line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
}

.text-line-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 3;
}

.text-line-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 4;
}

.text-line-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 5;
}

/* alert css */

/* From Uiverse.io by Yaya12085 */
.alert-card {
  overflow: hidden;
  text-align: left;
  border-radius: 0alert-5rem;
  max-width: 290px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  width: calc(100% - 32px);
  border-radius: 14px;
}

.alert-header {
  padding: 1.25rem 1rem 1rem 1rem;
}

.alert-image {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
}

.ico-danger {
  background-color: #fee2e2;
}

.ico-success {
  background-color: #e2fee6;
}

.alert-image span {
  font-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.alert-content {
  margin-top: 0.75rem;
  text-align: center;
}

.alert-title {
  color: #111827;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
}

.alert-message {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.alert-actions {
  margin: 0.75rem 1rem;
}

.alert-deactivate {
  display: inline-flex;
  padding: 0.5rem 1rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;
  width: 100%;
  border-radius: 0.375rem;
  border-width: 1px;
  border-color: transparent;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alert-cancel {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #374151;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  justify-content: center;   bhy7678u0y
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.alert-glass-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1040;
     cursor: not-allowed;
}
