/* Dark mode base styles */
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  background-color: #121212;
  color: #f1f1f1;
  margin-bottom: 60px;
}

.container {
  flex: 1
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem #121212, 0 0 0 0.25rem #258cfb;
}

/* Paragraph text styling */
p {
  font-size: 1rem;
  color: #d6d6d6; /* Softer gray for paragraph text */
  margin-bottom: 1rem;
}

  p strong {
    color: #f1f1f1; /* Slightly brighter for emphasis */
    font-weight: bold;
  }


/* Incident card styling */
.incident-card {
  display: flex;
  flex-direction: column;
  border-left: 5px solid #258cfb; /* Default border color */
  border-radius: 5px;
  background-color: #1e1e1e;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

  .incident-card.expired {
    border-left-color: red;
  }

  .incident-card.warning {
    border-left-color: orange;
  }

  .incident-card.success {
    border-left-color: green;
  }

.incident-info h5 {
  margin: 0 0 10px;
  font-weight: bold;
  font-size: 1rem;
  color: #f1f1f1; /* High contrast for titles */
}

.incident-info p {
  margin: 5px 0;
  font-size: 0.9rem;
  color: #d6d6d6; /* Softer gray for secondary text */
}

.incident-actions {
  margin-top: 15px;
}

  .incident-actions a {
    display: inline-block;
    padding: 8px 12px;
    color: #ffffff;
    background-color: #258cfb;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 5px;
    text-align: center;
  }

    .incident-actions a:hover {
      background-color: #1a5fa9;
    }

/* Flexbox container for the buttons */
.incident-actions-row {
  display: flex; /* Use flexbox to align items in a row */
  gap: 10px; /* Add space between buttons */
  margin-top: 10px; /* Optional margin for spacing */
}
.incident-actions-row a {
  display: inline-block;
  padding: 8px 12px;
  color: #ffffff;
  background-color: #258cfb;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 5px;
  text-align: center;
}

/* Header styling */
h1 {
  font-size: 1.5rem;
  color: #258cfb;
}

/* Card styling */
.details-card {
  border-left: 5px solid #258cfb;
  border-radius: 5px;
  background-color: #1e1e1e;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.details-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00adb5;
  margin-bottom: 20px;
}

.details-item {
  margin: 10px 0;
}

  .details-item strong {
    font-weight: bold;
    color: #f1f1f1;
  }

  .details-item span {
    color: #d6d6d6;
  }

/* Comments List */
.comments-list {
  list-style-type: none;
  padding: 0;
}

  .comments-list li {
    background-color: #292929;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 5px;
  }

.btn-primary {
  display: inline-block;
  padding: 8px 12px;
  color: #ffffff;
  background-color: #258cfb;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 5px;
  margin-top: 20px;
}

  .btn-primary:hover {
    background-color: #1a5fa9;
  }

.dismissed {
  /* Subtle gray text to indicate a disabled style */
  color: #666;
  opacity: 0.5;
}

/* Footer styling */
footer {
  background-color: #1e1e1e;
  color: #f1f1f1;
  padding: 10px 20px;
  text-align: center;
}