.oeap-wrapper {
  background: #f6f7f7;
  padding: 25px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
}

.oeap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.oeap-date-range select,
.oeap-controls select {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.oeap-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.oeap-btn {
  padding: 6px 10px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.oeap-toggle label {
  margin-right: 12px;
}

.oeap-performance {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.oeap-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 15px;
  text-align: center;
}

.oeap-card h4 {
  color: #444;
  font-size: 14px;
  margin-bottom: 6px;
}

.oeap-card p {
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

.oeap-chart-section {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  padding: 20px;
}

#oeap-stats {
  margin-top: 25px;
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  border: 1px solid #eee;
}

.oeap-table {
  width: 100%;
  border-collapse: collapse;
}

.oeap-table th,
.oeap-table td {
  padding: 10px 8px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 14px;
}

.oeap-table thead th {
  background: #fafafa;
  font-weight: 600;
}

.oeap-no-data {
  padding: 12px;
  text-align: center;
  color: #666;
}