.zerodha-btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.zerodha-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.2s ease;
}

.zerodha-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.zerodha-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.zerodha-btn-buy {
  background: #00b386;
  color: #fff;
}

.zerodha-btn-sell {
  background: #f97316;
  color: #fff;
}

.zerodha-btn-basket {
  background: #0b63ce;
  color: #fff;
}

.zerodha-trade-feedback {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #1f2937;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100001;
  font-size: 13px;
  display: none;
}

@media (max-width: 767px) {
  .zerodha-btn-wrap {
    width: 100%;
  }

  .zerodha-btn {
    width: 100%;
    text-align: center;
  }
}

