:root {
  --primary-color: #007BFF;
  /* Blue */
  --secondary-color: #28A745;
  /* Green */
  --accent-color: #FFC107;
  /* Orange */
  --neutral-light: #F0F0F0;
  /* Light Gray */
  --neutral-dark: #333333;
  /* Dark Gray */
  --accent-dark: #555555;
  --accent2-dark: #e8e8e8;
  --text-color: #212529;
  /* Default text color */
  --negativ-color: #ff0000;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: var(--accent2-dark);
  color: var(--text-color);
}

/* Buttons */
button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: var(--secondary-color);
  transform: scale(1.05);
}

button:active {
  background-color: var(--accent-color);
  color: var(--text-color);
  transform: scale(0.95);
}

button:disabled {
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  cursor: not-allowed;
}

/* Cards */
.card {
  background-color: var(--neutral-light);
  color: var(--text-color);
  border: 1px solid var(--neutral-light);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  width: 88px;
  padding: 32px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: solid 1px var(--text-color);
}

.card:hover {
  background-color: var(--neutral-light);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.card h1,
.card h2,
.card h3 {
  color: var(--text-color);
  margin-bottom: 10px;
}

/* Headings and paragraphs */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 10px;
  font-weight: bold;
}

p {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Container */
.container {
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
  /* Centered layout */
}

/* Tooltip */
.tooltip {
  position: relative;
  cursor: pointer;
}

.tooltip:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  /* Tooltip above element */
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--neutral-dark);
  color: white;
  padding: 5px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* /* Checkboxen elements */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-dark);
  border-radius: 4px;
  background-color: var(--neutral-light);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  display: inline-block;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white"><path d="M6.173 10.577l-2.83-2.829 1.415-1.415 1.415 1.414L11.243 3l1.414 1.414-6.484 6.485z"/></svg>');
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 3px var(--accent-color);
}

input[type="checkbox"]:hover {
  border-color: var(--secondary-color);
}

/* Select elements */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-dark);
  border-radius: 4px;
  padding: 10px 15px;
  font-size: 1rem;
  color: var(--text-color);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  line-height: 1.5;
}

select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 4px var(--primary-color);
  outline: none;
  /* Remove default outline */
}

select:hover {
  border-color: var(--secondary-color);
}

select option {
  color: var(--text-color);
  background-color: var(--neutral-light);
}

/* Layout: main app container */
#app {
  display: flex;
  /* use flexbox */
  height: calc(100vh - 60px);
  /* full height minus header height */
  margin: 0;
}

/* Sidebar */
#sidebar {
  width: 250px;
  background-color: var(--accent-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px;
}

.tab-content {
  color: var(--neutral-light);
}

#sidebarMenu {
  list-style: none;
  /* remove bullet points */
  padding: 0;
  margin: 0;
  width: 100%;
}

#sidebarMenu li {
  margin: 5px 0;
}

#sidebarMenu li button {
  width: 100%;
  padding: 8px;
  text-align: left;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

/* Main content area */
#mainContent {
  flex: 1;
  /* so the child (#mapGrid) can take full width/height */
  display: flex;
  overflow: hidden;
  /* if it grows too big */
}

/* Right sidebar */
#infoSidebar {
  width: 365px;
  background-color: var(--accent-dark);
  padding: 10px;
  overflow: auto;
}

/* Header */
header {
  color: var(--neutral-light);
  height: 60px;
  background-color: var(--neutral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

/* Collapsed sidebar */
#sidebar.collapsed {
  width: 60px;
  padding: 10px 5px;
}

#sidebarMenuBtnTxt.collapsed {
  display: none;
}

/* Location & time bar in the header */
#locationTimeBar {
  display: flex;
  align-items: center;
  margin-left: 20px;
}

#locationTimeBar label {
  margin: 0 8px;
  font-weight: bold;
}

#locationTimeBar select,
#locationTimeBar input[type="range"] {
  margin-right: 12px;
}

/* Map container */
#mapContainer {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#mapGrid {
  height: 100%;
  display: grid;
  gap: 0px;
  border: 1px solid #ccc;
}

/* Edit scenario container */
#divEditScenario {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#editMapGrid {
  display: grid;
  gap: 0px;
  border: 1px solid #ccc;
}

/* Grid cells */
.mapCell {
  border: 1px #7878787a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-style: dashed;
}

/* Editors */
#divNPCEditor,
#divObjectEditor,
#divPlaceEditor,
#divTimelineEditor,
#divEventEditor {
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  overflow: auto;
}

/* Editor fields */
.editor-field {
  min-height: 1.4em;
  padding: 1px;
}

/* NPC schedule table */
#npcScheduleTable {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 10px;
}

#npcScheduleTable th,
#npcScheduleTable td {
  border: 1px solid #ccc;
  padding: 4px 8px;
  text-align: center;
}

#npcEditorButtons {
  margin-top: 20px;
}

/* Tabs */
#infoTabs {
  display: flex;
  margin-bottom: 8px;
}

.tab-button {
  flex: 1;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.tab-button.active {
  background-color: var(--accent-color);
  color: var(--text-color);
  font-weight: bold;
}

/* NPC list items */
.npcItemRight {
  position: relative;
  border: 1px solid #ccc;
  background-color: #fff;
  width: 80px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.npcImageRight {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

/* Object list items */
.objectItemRight {
  border: 1px solid #ccc;
  background-color: #fff;
  width: 80px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

/* Timeline Editor */
#timelineTable {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

#timelineTable th,
#timelineTable td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

.draggable {
  cursor: grab;
}

.draggable:active {
  cursor: grabbing;
}

.drop-indicator {
  height: 4px;
  background-color: #007bff;
  margin: -2px 0;
}

.drag-handle {
  cursor: grab;
  user-select: none;
  font-size: 18px;
  padding: 4px;
  display: inline-block;
  color: #333;
  text-align: center;
}

.drag-handle:active {
  cursor: grabbing;
  color: #007bff;
  /* Change color when active */
}

/* Time display */
#timeDisplay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 600px;
  /* optional max width */
  padding: 2px;
  background-color: var(--neutral-light);
  border-radius: 5px;
  font-family: Arial, sans-serif;
  color: black;
  min-height: 50px;
}

.time-element {
  flex: 1;
  text-align: center;
  font-size: 14px;
  padding: 5px;
  width: 120px;
  /* max width */
  overflow: hidden;
  /* prevent overflow */
  text-overflow: ellipsis;
  /* show "..." for overflow */
  
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 5px;
}

.current-time {
  font-size: 16px;
  font-weight: bold;
  background-color: transparent;
  min-width: 100px;
  text-align: center;
}

/* Map elements & tooltip overlays */
.mapElement {
  font-size: 0.8rem;
  position: relative;
}

.mapIcon {
  text-shadow: 1px 1px 0 #000,
    -1px -1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    2px 2px 0 #FFF,
    -2px -2px 0 #FFF,
    -2px 2px 0 #FFF,
    2px -2px 0 #FFF;
}

.hoverOverlay {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  width: max-content;
}

.mapElement:hover .hoverOverlay {
  display: flex;
}

.hoverItem {
  display: flex;
  align-items: center;
  margin: 5px 0;
  cursor: pointer;
}

.hoverImage {
  width: 30px;
  height: 30px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 50%;
}

/* Sidebar icons */
#sidebarMenuBtnIcon {
  font-size: 42px;
  color: var(--neutral-light);
  text-shadow:
    1px 1px 0 var(--text-color),
    -1px -1px 0 var(--text-color),
    -1px 1px 0 var(--text-color),
    1px -1px 0 var(--text-color);
  padding-right: 10px;
}

/* Places */
.placeItemRight {
  border: 1px solid #ccc;
  background-color: #fff;
  width: 80px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.highlight {
  outline: auto;
}

.tooltipBtnRemove {
  margin: 5px;
}

#mapContainer,
#editMapGrid {
  max-height: 100%;
  overflow: hidden;
}

#editMapGrid {
  height: 100%;
  display: grid;
  gap: 0px;
  border: 1px solid #ccc;
}

/* Events */
.eventItemRight {
  border: 1px solid #ccc;
  background-color: #fff;
  width: 80px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

/* Conditions */
#conditionsList {
  color: var(--neutral-light);
}

.condition {
  border: #000 1px solid;
  padding: 5px;
  margin: 5px 0;
  border-radius: 5px;
  background-color: var(--accent-dark);
}

.condition.or {
  margin-left: 20px;
  border-left: 4px solid var(--primary-color);
  background-color: var(--neutral-dark);
}

#divEventEditor>*>textarea {
  width: 100%;
}

.condition>button {
  margin: 5px;
  padding: 5px 10px;
  font-size: 0.9em;
  cursor: pointer;
}

.condition>button:hover {
  background-color: #e0e0e0;
}

/* Notifications */
#notificationContainer {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  z-index: 1000;
  width: 35%;
}

.notification {
  min-width: 300px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.3s ease-out;
}

.notification .content {
  flex-grow: 1;
}

.notification .close-btn {
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.notification.info {
  background-color: #e7f5ff;
  color: #3178c6;
}

.notification.success {
  background-color: #d3f9d8;
  color: #37b24d;
}

.notification.warning {
  background-color: #fff3bf;
  color: #f08c00;
}

.notification.error {
  background-color: #ffe3e3;
  color: #d6336c;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.hoverOverlay {
  font-size: 14px;
}

/* Lists for NPCs, Objects, etc. */
#npcListRight,
#divObjectListRight,
#divplaceListRight,
#divEventListRight,
#npcListHere,
#objectListHere,
#divAllNPCListRight,
#divAllObjectsListRight,
#divAllPlacesListRight {
  color: var(--text-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  padding-bottom: 1em;
}

/* NPC Attributes container */
#npcAttributesContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.category {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #fff;
}

.category h3 {
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.bonus-points {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  margin-left: 10px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.category-header h3 {
  margin: 0;
}

.power-points {
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
}

.entries {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* spacing between rows */
}

.entry-row {
  display: flex;
  align-items: center;
  gap: 10px;
  /* spacing between columns */
}

.entry-row input {
  flex: 1;
  padding: 5px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.entry-row button {
  background: none;
  border: none;
  color: var(--negativ-color);
  font-size: 16px;
  cursor: pointer;
}

.entry-row button:hover {
  color: darkred;
}

.btnDeleteEntry {
  background: none;
  border: none;
  color: var(--negativ-color);
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
}

.btnDeleteEntry:hover {
  color: darkred;
}

/* Character sheet style */
.character-sheet {
  color: var(--text-color);
  padding: 5px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.character-image {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 2px solid #000;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

.character-name {
  text-align: center;
  margin-top: 10px;
  color: #333;
}

.attributes-section {
  margin-top: 20px;
}

.attributes-title {
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #333;
}

.attributes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

div.attributes-section>div>div:nth-child(2) {
  border-left: solid 2px black;
  border-right: solid 2px black;
}

.attribute-category h3 {
  border-bottom: solid 2px black;
  font-size: small;
  margin-bottom: 5px;
  color: #333;
  white-space: pre-line;
}

.attributes-list {
  font-size: 0.8em;
  list-style: none;
  padding: 0;
}

.attributes-list li {
  border-bottom: dashed rgba(0, 0, 0, 0.179);
  margin-bottom: 3px;
}

/* Inventory */
.inventory-section {
  margin-top: 20px;
}

.inventory-title {
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #333;
}

.inventory-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.inventory-item {
  width: 100px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  background-color: #f9f9f9;
  cursor: pointer;
}

.inventory-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-bottom: 10px;
}

.inventory-name {
  font-size: 14px;
  color: #333;
}

.no-items-message {
  text-align: center;
  font-style: italic;
  color: #777;
}

.owner-image {
  margin: auto;
  max-width: 50%;
  display: block;
}

/* Error message */
#errorMessage {
  display: none;
  /* hidden by default */
  color: var(--negativ-color);
  font-size: 0.9em;
  margin-top: 4px;
}

/* Time container */
#timeContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  min-width: 175px;
  margin-left: 35px;
}

#realTimeContainer,
#pageTimerContainer {
  align-items: center;
  gap: 10px;
}

#realTime,
#pageTimer {
  padding: 5px 10px;
}

/* Spoiler */
.spoiler {
  background-color: black;
  color: black;
  cursor: pointer;
  transition: color 0.3s ease;
}

.spoiler:hover {
  background-color: gray;
}

.quill-editor {
  color: var(--text-color);
  height: 150px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.ql-spoiler::before {
  content: "👁️‍🗨️";
  font-size: 16px;
  top: -5px;
  left: -1px;
  position: relative;
}

.ql-spoiler {
  width: 30px;
  text-align: center;
}

/* Header adjustments */
#headerLeft {
  position: absolute;
  left: 10px;
  display: flex;
  align-items: center;
}

#headerRight {
  position: absolute;
  right: 10px;
  display: flex;
  align-items: center;
}

#logo {
  height: 50px;
  /* logo height */
}

.bell {
  position: relative;
  cursor: pointer;
  font-size: 30px;
  margin-right: 10px;
  padding-left: 10px;
  color: var(--accent-color)
}

.count {
  position: absolute;
  top: -5px;
  right: -16px;
  background-color: var(--negativ-color);
  color: var(--neutral-light);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 13px;
  font-weight: bold;
  margin-right: 10px;
}

.swing {
  animation: swing 0.5s ease-out;
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
  }

  50% {
    transform: rotate(15deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* Keyframes for dropdown animations */
@keyframes dropdownOpen {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes dropdownClose {
  0% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0);
  }
}

.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--accent-dark);
  border: 1px solid var(--text-color);
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 1000px;
  max-height: 500px;
  overflow-y: scroll;
  z-index: 100;
  padding-left: 0px;
  display: block;
  transform-origin: top;
  transition: transform 0.3s ease, opacity 0.3s ease;
  animation-fill-mode: forwards;
  animation-duration: 0.3s;
}

.dropdown.opening {
  animation-name: dropdownOpen;
}

.dropdown.closing {
  animation-name: dropdownClose;
}

.hidden {
  display: none !important;
}

.notification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: 5px 5px;
  border: 1px solid var(--neutral-light);
  border-radius: 5px;
  background-color: var(--neutral-dark);
  font-size: 0.9em;
}

#notificationList {
  padding-left: 0px;
}

.delete-btn {
  margin-bottom: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* halb-transparent */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  /* über allem anderen */
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  /* etc. */
}

.hidden {
  display: none !important;
}

.ql-itemLink::before {
  content: "🔗";
  font-size: 16px;
  top: -5px;
  left: -1px;
  position: relative;
}

span.item-link {
  color: var(--primary-color) !important;
}

.color-picker-container {
  display: inline-block;
  position: relative;
}

/* Das eigentliche Farbauswahlfeld */
input[type="color"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  top: 5px;
  width: 1.5em;
  height: 1.5em;
  cursor: pointer;
  padding: 0;
  background: transparent;
  outline: none;
  border-radius: 4px;
  border: 1px solid var(--neutral-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* WebKit: Farbe in der Vorschau anpassen */
input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
  /* Standard-Padding entfernen */
  border-radius: 4px;
}

input[type="color"]::-webkit-color-swatch {
  border: none;
  /* Rahmen des Swatch entfernen */
  border-radius: 4px;
}

/* Firefox: Farbe in der Vorschau anpassen */
input[type="color"]::-moz-color-swatch {
  border: none;
  border-radius: 4px;
}

/* Hover-Effekt: Farbfeld-Umrandung hervorheben */
input[type="color"]:hover {
  border-color: var(--secondary-color);
}

/* Fokus-Effekt: Box-Shadow mit Primärfarbe */
input[type="color"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 4px var(--primary-color);
  outline: none;
}

/* Grid Img */
.gridIconImg {
  border-radius: 100%;
  border-width: 5px;
  width: 75%;
  border-style: solid;
  outline: auto;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.notification-item  a {
  color: var(--accent-color);
}

button.active {
  background-color: var(--accent-color);
}

#nextTime, #prevTime {
  height: 40px;
}