:root {
  --background-color-opacity: rgba(0, 0, 0, 0.5);
  --background-color: #000000;
  --background-gray: #5c585800;
  --default-color: #ffffff;
  --primary-color: #ef1c23;
  --secondary-color: #ffffff;
  --light-primary-color: #7d1e1e;
  --contrast-color: #ffffff;
  --font-family: Arial, sans-serif;
  --dark-background: #1e1e1e;
  --section-background: #7d1e1e;
  --accent-color: #ff0000;
}

body {
  position: relative;
  font-family: "Arial", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  z-index: 0;
  color: var(--default-color);
  overflow-x: hidden;
  padding: 0;
}

.bg {
  position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background: radial-gradient(
      circle at 25% 35%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 75% 65%,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 60% 40%,
      rgba(255, 0, 0, 0.25) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 40% 75%,
      rgba(200, 0, 0, 0.25) 0%,
      transparent 45%
    ),
    radial-gradient(circle at 20% 60%, rgba(139, 0, 0, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #000000 0%, #0c0c0c 100%);
  background-blend-mode: screen;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.458);
  z-index: -1;
}

footer {
  color: var(--secondary-color);
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: auto;
  text-align: center;
  width: 100%;
  bottom: 0;
}

/* Confirm Delete Dialog Styles */
.confirm-dialog {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--default-color);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  width: 30%;
  z-index: 999;
}

.confirm-dialog .dialog-content {
  text-align: center;
  color: var(--primary-color);
}

.confirm-dialog .dialog-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.confirm-dialog .dialog-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.confirm-dialog .dialog-buttons .btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: white;
}

.confirm-dialog .dialog-buttons .btn-secondary {
  border: none;
  color: var(--primary-color);
}

.confirm-dialog .dialog-buttons .btn:hover {
  opacity: 0.8;
}


.notification {
  display: none;
  /* Initially hidden */
  padding: 15px;
  margin: 20px auto;
  max-width: 700px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
}

.notification.success {
  color: green;
}

.notification.error {
  color: red;
}

/* New class for white text */
.notification.white-text {
  color: var(--secondary-color);
}
