/* Modern User Dashboard Styles */
.eem-user-dashboard-container {
  display: flex;
  gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 80vh;
  background: #111;
  padding: 48px 0 48px 0;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.eem-user-dashboard-left {
  min-width: 340px;
  max-width: 360px;
  width: 340px;
  background: linear-gradient(135deg, #232323 60%, #1976d2 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(25,118,210,0.10);
  padding: 32px 24px 32px 24px;
  margin-left: 32px;
  margin-right: 0;
  color: #fff;
  position: relative;
}
.eem-user-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.eem-user-profile-avatar-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 8px;
}
.eem-user-profile-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  background: #222;
  border: 4px solid #1976d2;
  box-shadow: 0 2px 16px rgba(25,118,210,0.10);
}
.eem-user-profile-edit {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #222;
  border-radius: 50%;
  padding: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(25,118,210,0.10);
  transition: background 0.2s;
}
.eem-user-profile-edit:hover {
  background: #1976d2;
}
.eem-user-profile-name {
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
}
.eem-user-profile-status {
  font-size: 1em;
  color: #b0c4de;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-align: center;
}
.eem-user-profile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  width: 100%;
}
.eem-user-profile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1.08em;
  text-decoration: none;
  padding: 10px 0 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.eem-user-profile-nav a.active, .eem-user-profile-nav a:hover {
  background: #1976d2;
  color: #fff;
}
.eem-user-dashboard-right {
  flex: 1 1 0;
  min-width: 420px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-right: 32px;
}
.eem-user-dashboard-account {
  background: rgba(30,30,30,0.98);
  border-radius: 16px;
  padding: 18px 32px;
  margin-bottom: 0;
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
}
.eem-user-dashboard-account-status {
  font-size: 1em;
  font-weight: 400;
  color: #b0c4de;
}
.eem-user-dashboard-overview {
  background: linear-gradient(120deg, #232323 60%, #1976d2 100%);
  border-radius: 20px;
  padding: 32px 32px 24px 32px;
  color: #fff;
  box-shadow: 0 4px 32px rgba(25,118,210,0.10);
  margin-bottom: 0;
}
.eem-user-dashboard-overview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.eem-user-dashboard-overview-title {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: -1px;
}
.eem-user-dashboard-overview-info {
  color: #b0c4de;
  cursor: pointer;
}
.eem-user-dashboard-overview-body {
  border-top: 1.5px solid #2a2a2a;
  padding-top: 18px;
  margin-top: 0;
}
.eem-user-dashboard-overview-events {
  font-size: 1.1em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.eem-user-dashboard-view-btn {
  background: #fff;
  color: #1976d2;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 16px;
  text-decoration: none;
  font-size: 1em;
  transition: background 0.18s, color 0.18s;
  border: none;
  margin-left: 8px;
}
.eem-user-dashboard-view-btn:hover {
  background: #1976d2;
  color: #fff;
}
.eem-user-dashboard-event-history {
  margin-top: 12px;
}
.eem-user-dashboard-event-history-title {
  font-weight: 700;
  font-size: 1.08em;
  margin-bottom: 8px;
}
.eem-user-dashboard-event-history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.eem-user-dashboard-event-history-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1.08em;
  color: #fff;
}
.eem-user-dashboard-event-history-name {
  font-weight: 600;
  flex: 2;
}
.eem-user-dashboard-event-history-date {
  flex: 1;
  text-align: center;
  color: #b0c4de;
}
.eem-user-dashboard-event-history-view {
  flex: 0;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: #1976d2;
  border-radius: 5px;
  padding: 4px 16px;
  transition: background 0.18s, color 0.18s;
}
.eem-user-dashboard-event-history-view:hover {
  background: #fff;
  color: #1976d2;
}
.eem-user-dashboard-quicklinks {
  background: rgba(30,30,30,0.98);
  border-radius: 16px;
  padding: 18px 32px;
  color: #fff;
  margin-top: 0;
  box-shadow: 0 2px 12px rgba(25,118,210,0.08);
}
.eem-user-dashboard-quicklinks-title {
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.eem-user-dashboard-quicklinks-list {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 1.08em;
  margin-top: 0;
}
.eem-user-dashboard-quicklinks-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
  position: relative;
  padding-right: 18px;
}
.eem-user-dashboard-quicklinks-list a:hover {
  color: #43b97f;
}
.eem-user-dashboard-quicklinks-gear {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2px;
}
@media (max-width: 1100px) {
  .eem-user-dashboard-container {
    flex-direction: column;
    gap: 18px;
    padding: 24px 0 24px 0;
  }
  .eem-user-dashboard-left {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100vw;
    min-width: unset;
    border-radius: 18px;
  }
  .eem-user-dashboard-right {
    margin-right: 0;
    min-width: unset;
    max-width: 100vw;
  }
}
@media (max-width: 700px) {
  .eem-user-dashboard-container {
    flex-direction: column;
    gap: 10px;
    padding: 8px 0 8px 0;
  }
  .eem-user-dashboard-left {
    padding: 18px 8px 18px 8px;
    border-radius: 12px;
  }
  .eem-user-dashboard-right {
    padding: 0;
    gap: 12px;
  }
  .eem-user-dashboard-account, .eem-user-dashboard-quicklinks {
    padding: 12px 10px;
    border-radius: 10px;
  }
  .eem-user-dashboard-overview {
    padding: 16px 8px 12px 8px;
    border-radius: 12px;
  }
} 