#models_alert_card {
  position: absolute;
  left: 40%;
  top: 40%;
  z-index: 999999999;
  width: 300px;
}

/* Card Style */
.card {
  border-radius: 0;
  box-shadow: none;
}

/* Alert Card Specific Style */
.alert-card {
  border-left: 5px solid #f44336;
  /* Red color for alert */
}


/* Card Title */
.card-title {
  font-size: 18px;
  margin: auto;
}

/* Card Text */
.card-text {
  color: #666;
  margin-bottom: 16px;
}

/* Button Style */
.btn-close {
  background-color: #f44336;
  /* Red color */
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

.btn-close:hover {
  background-color: #d32f2f;
  /* Darker red on hover */
}

.card-actions {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}

.btn-action {
  background-color: #007bff;
  /* Blue color for action buttons */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  flex: 1;
  margin: 0 5px;
}

.btn-restart {
  background-color: #28a745;
  /* Green color for the restart button */
}

.btn-restart:hover {
  background-color: #218838;
  /* Darker green when hovered */
}

.btn-cancel {
  background-color: #dc3545;
  /* Red color for the cancel button */
}

.btn-cancel:hover {
  background-color: #c82333;
}

/* Remove bullet points from <li> elements */
ul.collapsible {
  list-style-type: none; /* Hides the bullet points */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
}

/* Header of Collapsible Items */
.collapsible-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: #e0e0e0; /* Light gray background */
  border-bottom: 1px solid #ddd; /* Border between items */
  cursor: pointer; /* Pointer cursor for collapsible header */
  transition: background-color 0.3s ease;
}

.notification-icon {
  margin-right: 8px;
  font-size: 24px; /* Adjust icon size */
}

.notification-title {
  flex-grow: 1;
  font-size: 16px; /* Adjust title size */
  font-weight: bold;
}

/* Expand Icon */
.collapsible-expand {
  font-size: 24px; /* Icon size for expand/collapse */
  color: #757575; /* Gray color for icon */
}

/* Collapsible Body Styles */
.collapsible-body {
  padding: 16px;
  background-color: #f1f1f1; /* Light background for content */
  max-height: 300px; /* Set a maximum height */
  overflow-y: auto; /* Enables vertical scrolling */
  /* Custom scrollbar styles for WebKit browsers (Chrome, Safari) */
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #c0c0c0 #f1f1f1; /* Firefox scrollbar color */
}

/* WebKit scrollbar styling for Chrome, Safari */
.collapsible-body::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.collapsible-body::-webkit-scrollbar-track {
  background: #f1f1f1; /* Background color of the track */
}

.collapsible-body::-webkit-scrollbar-thumb {
  background: #c0c0c0; /* Color of the scroll thumb */
  border-radius: 4px; /* Rounded corners for the scrollbar thumb */
}

.collapsible-body::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0; /* Darker color when hovering over the thumb */
}

/* Specific Notification Styles */
.notification.error {
  border-left: 5px solid #e57373; /* Red border for errors */
}

.notification.info {
  border-left: 5px solid #64b5f6; /* Blue border for info */
}

.notification.success {
  border-left: 5px solid #81c784; /* Green border for success */
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
    margin: 10px;
  }

  .collapsible-header,
  .collapsible-body {
    padding: 12px;
  }
}
