/* Base layout */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #1e1e2f, #2c3e50);
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-align: center;
  box-sizing: border-box;
}

.main-content {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
  color: #00bcd4;
}

header {
  margin-bottom: 3em;
}

header p {
  margin-top: 1em;
  margin-bottom: 1.5em;
}

/* Time badge */
.badge {
  margin-top: 1em;
  margin-bottom: 1em;
  background: #263238;
  padding: 0.6em 1.2em;
  border-radius: 8px;
  font-size: 0.9em;
  color: #90caf9;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Dashboard button */
.dashboard-link {
  margin-top: 1.5em;
  padding: 12px 24px;
  background: #4caf50;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.dashboard-link:hover {
  background-color: #388e3c;
  transform: translateY(-2px);
}

/* Section container */
.section-container {
  width: 100%;
  max-width: 1000px;
  margin: 4em auto;
  padding: 2em;
  border-radius: 20px;
  background: #1c1c2b;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6);
}

/* Section title */
.section-title {
  font-size: 2em;
  color: #00bcd4;
  margin-bottom: 1em;
  text-align: center;
}

/* Card layout */
.card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
}

/* Card styling */
.card {
  background: #263238;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.6em;
  margin-bottom: 0.5em;
  color: #00796b;
}

.card p {
  font-size: 1em;
  color: #e0e0e0;
  margin: 0.5em 0;
}

.card a {
  margin-top: 1em;
  padding: 8px 16px;
  background: #00796b;
  color: #e0e0e0;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 500;
  transition: background-color 0.3s;
}

.card a:hover {
  background-color: #004d40;
}

.card .icon {
  font-size: 3em;
  margin-bottom: 0.5em;
  color: #ffb74d;
}

/* Footer */
footer {
  font-size: 0.8em;
  color: #607d8b;
  padding: 20px 0;
  text-align: center;
}
