* {
  box-sizing: border-box;
  font-family: 'Vazirmatn', sans-serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #13241f, #070d0b);
  color: #e6f6f1;
}

.app {
  display: flex;
  height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 240px;
  background: linear-gradient(180deg, #071311, #030807);
  padding: 20px;
}

.logo {
  color: #2dd4bf;
  font-weight: 800;
  margin-bottom: 25px;
}

.sidebar li {
  list-style: none;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 10px;
  cursor: pointer;
}

.sidebar li.active,
.sidebar li:hover {
  background: rgba(45,212,191,0.15);
  color: #2dd4bf;
}

.sidebar footer {
  font-size: 12px;
  opacity: 0.5;
  margin-top: 30px;
}

/* Main */
.main {
  flex: 1;
  padding: 25px 35px;
  overflow-y: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: #5eead4;
}

.run {
  background: linear-gradient(135deg,#22c55e,#166534);
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  color: #021c14;
  font-weight: 600;
  cursor: pointer;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.card {
  background: rgba(255,255,255,0.04);
  padding: 20px;
  border-radius: 16px;
}

.card h3 {
  color: #2dd4bf;
}

.card p {
  font-size: 14px;
  opacity: 0.8;
}

.status {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.status.active {
  background: rgba(34,197,94,0.25);
  color: #22c55e;
}

.status.pending {
  background: rgba(234,179,8,0.25);
  color: #eab308;
}

/* Rules */
.rules {
  margin-top: 30px;
}

.rules h2 {
  margin-bottom: 10px;
}

.rule {
  background: rgba(255,255,255,0.04);
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* Logs */
.logs {
  margin-top: 30px;
}

.logs ul {
  list-style: none;
  padding: 0;
}

.logs li {
  background: rgba(255,255,255,0.04);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 8px;
}
.sidebar li{
    text-decoration: none;
    color: white;
    display: block;
    list-style: none;
    border-bottom: none;
    border: none;
}
.a{
    text-decoration: none;
    color: white;
    list-style: none;
    border: none;}