/* Modern Events Dashboard Styles */
.eem-dashboard-container {
  max-width: 1100px;
  margin: 48px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 36px 32px 32px 32px;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.eem-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.eem-dashboard-title {
  font-size: 2em;
  color: #1a237e;
  font-weight: 700;
}
.eem-dashboard-create-btn {
  background: linear-gradient(90deg, #1976d2 0%, #1e88e5 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.08);
  transition: background 0.2s;
  text-decoration: none;
}
.eem-dashboard-create-btn:hover {
  background: linear-gradient(90deg, #1565c0 0%, #1976d2 100%);
}
.eem-dashboard-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #fff;
}
.eem-dashboard-table th, .eem-dashboard-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
  vertical-align: middle;
}
.eem-dashboard-table th {
  background: #f5f7fa;
  color: #1a237e;
  font-weight: 700;
}
.eem-dashboard-table td {
  color: #222;
  background: #fff;
}
.eem-dashboard-table tr:hover {
  background: #f0f4ff;
}
.eem-dashboard-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f0f0;
}
.eem-dashboard-action-btn {
  background: none;
  border: none;
  color: #1976d2;
  font-size: 1.2em;
  cursor: pointer;
  margin-right: 10px;
  transition: color 0.2s;
}
.eem-dashboard-action-btn:last-child {
  margin-right: 0;
}
.eem-dashboard-action-btn:hover {
  color: #d32f2f;
}
.eem-dashboard-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  justify-content: center;
  align-items: center;
}
.eem-dashboard-modal.active {
  display: flex;
}
.eem-dashboard-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}
.eem-dashboard-modal-close {
  float: right;
  font-size: 1.5em;
  color: #888;
  cursor: pointer;
  margin-top: -12px;
  margin-right: -8px;
}
@media (max-width: 700px) {
  .eem-dashboard-container {
    padding: 16px 2vw;
    max-width: 99vw;
  }
  .eem-dashboard-table th, .eem-dashboard-table td {
    padding: 8px 4px;
    font-size: 0.98em;
  }
  .eem-dashboard-modal-content {
    padding: 16px 4vw;
  }
} 