/* Nomer oladigan bot moduli uslublari */
.botmod-wrap {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.botmod-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.botmod-header h3 {
  margin: 0;
  font-size: 17px;
  color: #fff;
}
.botmod-btn-back {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #cbd5e1;
  padding: 5px 12px;
  border-radius: 8px;
  cursor: pointer;
}
.botmod-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.botmod-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: #172033;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.botmod-btn:hover {
  background: #1e293b;
  border-color: #3b82f6;
}
.botmod-card {
  background: #131a2b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
  margin-top: 14px;
}
.botmod-field {
  margin-bottom: 14px;
}
.botmod-field label {
  display: block;
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 6px;
}
.botmod-field input {
  width: 100%;
  padding: 10px 14px;
  background: #0a0e1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  box-sizing: border-box;
}
.botmod-field input:focus {
  border-color: #3b82f6;
  outline: none;
}
.botmod-action-btn {
  width: 100%;
  padding: 11px;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.botmod-action-btn:hover {
  background: #1d4ed8;
}
.botmod-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #0a0e1a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  margin-bottom: 8px;
}
.botmod-delete-btn {
  background: rgba(239,68,68,0.2);
  border: 1px solid rgba(239,68,68,0.4);
  color: #f87171;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
}
.botmod-delete-btn:hover {
  background: rgba(239,68,68,0.3);
}
.botmod-badge-active {
  background: rgba(34,197,94,0.2);
  color: #4ade80;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}
