@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*:after,
*:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0f0;
  font-weight: 700;
  text-transform: uppercase;
}

/* Event-Liste */
.events-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 60vh;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
}

.events-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari und Edge */
}

/* Event-Eintrag */
.event-item {
  display: flex;
  align-items: center;
  background-color: #222;
  padding: 15px;
  border-radius: 10px;
  color: #0f0;
  box-shadow: 0 4px 8px rgba(0, 255, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 255, 0, 0.5);
}

/* Event-Datum */
.event-date {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: #a8f0a5;
}

/* Event-Details */
.event-details {
  flex: 3;
  text-align: left;
  font-size: 16px;
}

.event-title {
  font-weight: 600;
  margin-bottom: 5px;
}

.event-info {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #a8f0a5;
  gap: 10px;
}

/* Pseudo-Icons für Uhrzeit und Erinnerung */
.event-info span::before {
  content: '•';
  font-size: 14px;
  color: #0f0;
  margin-right: 5px;
}

/* Anruf-Button */
.call-button {
  flex: 1;
  padding: 10px;
  background-color: #0f0;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: #0a0;
}