/* Creative cricket themed styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
  --green: #0b8457;
  --accent: #ffb703;
  --bg: #0b1f2a;
  --card: #071a1f;
  --text-light: #eaf6f1;
  --text-muted: #cfeee2;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(180deg, #061016 0%, #072227 100%);
  color: var(--text-light);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 16px;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #04141c;
  font-weight: 800;
}

.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* CARD */
.card {
  background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.02),
        rgba(255, 255, 255, 0.01)
      );
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
  margin-bottom: 18px;
}

/* BUTTONS */
.btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

/* GRID LAYOUT */
.grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

/* TABLE */
.table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-light);
}

.table th,
.table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* KPI Cards */
.kpi {
  display: flex;
  gap: 12px;
}

.kpi .item {
  background: rgba(255, 255, 255, 0.02);
  padding: 12px;
  border-radius: 8px;
  flex: 1;
}

/* INPUT FIELDS */
.form-control {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  color: var(--text-light);
}

/* TEXT */
.small {
  font-size: 13px;
  color: var(--text-muted);
}

/* BADGE */
.badge {
  background: var(--accent);
  padding: 6px 8px;
  border-radius: 8px;
  color: #04141c;
  font-weight: 700;
}

/* CENTER ALIGN */
.center {
  text-align: center;
}

/* CHECKBOX LABEL FIX */
label.form-check-label {
  color: var(--text-light);
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    color: #fff !important;
}
p {

    color: #fff !important;
}