#oeuk-dashboard {
  display: flex;
  min-height: 700px;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f1f5f9;
  border-radius: 12px;
  overflow: hidden;
}

.oeuk-sidebar {
  width: 240px;
  background: #03045e;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.oeuk-sidebar h2 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.oeuk-sidebar nav button {
  display: block;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 10px;
  background: #023e8a;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-align: left;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}
.oeuk-sidebar nav button:hover { background:#0077b6; }
.oeuk-sidebar nav button.active { background:#00b4d8; color:#03045e; font-weight:600; }

.oeuk-content {
  flex: 1;
  padding: 25px;
  background: #fff;
}
.oeuk-panel { display: none; animation: fadeIn 0.5s ease; }
.oeuk-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity:0; transform: translateY(10px); }
  to { opacity:1; transform: translateY(0); }
}

.oeuk-info { margin-top: 15px; font-size: 16px; }

.oeuk-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
  gap: 15px;
  margin-top: 15px;
}
.oeuk-card {
  background: #f9fafb;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s;
}
.oeuk-card:hover { transform: translateY(-3px); }
.oeuk-card h4 {
  font-size: 22px;
  color:#0077b6;
  margin:0;
}
.oeuk-card p { margin: 5px 0 0; color:#444; }

.oeuk-quote {
  background:#f9fafb;
  padding:12px;
  margin:10px 0;
  border-left:4px solid #0077b6;
  border-radius:6px;
}
.oeuk-quote a { color:#0077b6; text-decoration:none; }
.oeuk-quote a:hover { text-decoration:underline; }