
.sirmax-presenter-dashboard {
    font-family: 'Segoe UI', sans-serif;
    background: #101010;
    color: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.sirmax-presenter-dashboard .header h1 {
    color: #0dbf73;
}

.stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.card {
    flex: 1;
    padding: 20px;
    border-radius: 12px;
    background: #1a1a1a;
    border-left: 5px solid;
}

.card.green { border-color: #0dbf73; }
.card.yellow { border-color: #ffa502; }
.card.blue { border-color: #1e90ff; }

.card h4 { margin: 0 0 10px; color: #aaa; }
.card p { font-size: 26px; }

.recent table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.recent th, .recent td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.recent thead tr {
    background-color: #0dbf73;
}

.note {
    margin-top: 30px;
    background: #0dbf73;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

/* Base styles */
.sirmax-presenter-dashboard {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background: #111;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(13, 191, 115, 0.5);
}
.sirmax-presenter-dashboard h1,
.sirmax-presenter-dashboard h3 {
  color: #0dbf73;
}
.sirmax-presenter-dashboard .header {
  margin-bottom: 30px;
  text-align: center;
}
.sirmax-presenter-dashboard .stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.sirmax-presenter-dashboard .card {
  flex: 1 1 30%;
  background: #1f1f1f;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
.sirmax-presenter-dashboard .card.green { background: #0dbf73; }
.sirmax-presenter-dashboard .card.yellow { background: #ffc107; color: #222; }
.sirmax-presenter-dashboard .card.blue { background: #2196f3; }

.sirmax-presenter-dashboard .recent table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.sirmax-presenter-dashboard .recent th,
.sirmax-presenter-dashboard .recent td {
  padding: 10px;
  border: 1px solid #444;
  text-align: center;
}
.sirmax-presenter-dashboard .recent th {
  background: #0dbf73;
  color: #000;
}
.sirmax-presenter-dashboard .note {
  margin-top: 30px;
  font-style: italic;
  background: #222;
  padding: 15px;
  border-left: 4px solid #0dbf73;
}

/* Responsive design */
@media (max-width: 768px) {
  .sirmax-presenter-dashboard .stats {
    flex-direction: column;
    gap: 10px;
  }
  .sirmax-presenter-dashboard .card {
    flex: 1 1 100%;
  }
  .sirmax-presenter-dashboard .recent table,
  .sirmax-presenter-dashboard .recent th,
  .sirmax-presenter-dashboard .recent td {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .sirmax-presenter-dashboard h1 {
    font-size: 24px;
  }
  .sirmax-presenter-dashboard .card h4 {
    font-size: 16px;
  }
}
