:root {
  --ef-primary:     #6200ea;
  --ef-secondary:   #00bcd4;
  --ef-dark:        #1a0033;
  --ef-card-radius: 12px;
}

body { font-family: 'Roboto', sans-serif; background: #f5f5f5; }

.ef-nav { background: var(--ef-primary) !important; }
.ef-nav .brand-logo { font-weight: 700; letter-spacing: 1px; }

.ef-sidenav-header { background: var(--ef-primary); padding: 16px; }

.ef-main { padding: 24px 0 48px; min-height: calc(100vh - 130px); }

.ef-footer { background: var(--ef-dark); padding: 16px 0; }

.ef-hero {
  background: linear-gradient(135deg, var(--ef-primary) 0%, #311b92 50%, #1a237e 100%);
  color: #fff;
  padding: 56px 24px 40px;
  text-align: center;
  margin-bottom: 32px;
}
.ef-hero h1 { font-size: 2.4rem; font-weight: 700; margin: 0 0 8px; }
.ef-hero p  { font-size: 1.1rem; opacity: .85; margin: 0; }

.ef-card {
  border-radius: var(--ef-card-radius) !important;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.ef-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(98,0,234,.18) !important;
}
.ef-card .card-image img {
  height: 210px;
  object-fit: cover;
  width: 100%;
}
.ef-card .card-title {
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.ef-card .card-content { padding: 16px; }
.ef-card .card-action  { border-top: 1px solid rgba(0,0,0,.08); }

.ef-chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 16px;
  font-size: .72rem;
  font-weight: 500;
  background: var(--ef-primary);
  color: #fff;
  margin-bottom: 6px;
}

.ef-filters {
  background: #fff;
  border-radius: var(--ef-card-radius);
  padding: 16px 24px;
  margin-bottom: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.ef-admin-header {
  background: var(--ef-primary);
  color: #fff;
  border-radius: var(--ef-card-radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.ef-admin-header h4 { margin: 0; font-weight: 700; }

.ef-table-wrap {
  background: #fff;
  border-radius: var(--ef-card-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
  overflow: hidden;
}
.ef-table-wrap table thead { background: var(--ef-dark); }
.ef-table-wrap table thead th { color: #fff; font-weight: 500; }
.ef-table-wrap table tbody tr:hover { background: #ede7f6; }

.ef-form-card {
  background: #fff;
  border-radius: var(--ef-card-radius);
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}
.ef-form-card .input-field label { color: var(--ef-primary) !important; }
.ef-form-card .input-field input:focus,
.ef-form-card .input-field textarea:focus {
  border-bottom-color: var(--ef-primary) !important;
  box-shadow: 0 1px 0 0 var(--ef-primary) !important;
}

.btn.ef-btn-primary {
  background: var(--ef-primary) !important;
  border-radius: 24px !important;
}
.btn.ef-btn-accent {
  background: var(--ef-secondary) !important;
  border-radius: 24px !important;
}

.ef-no-image {
  height: 210px;
  background: linear-gradient(135deg, #311b92, #6200ea);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ef-no-image i { font-size: 64px; color: rgba(255,255,255,.4); }

.ef-date-badge { font-size: .78rem; color: #777; }
.ef-date-badge i { font-size: .85rem; vertical-align: middle; }

.ef-empty { text-align: center; padding: 64px 24px; color: #aaa; }
.ef-empty i { font-size: 80px; margin-bottom: 12px; }

@media (max-width: 600px) {
  .ef-hero h1 { font-size: 1.6rem; }
  .ef-admin-header { flex-direction: column; align-items: flex-start; }
}