


.mainn {
  display: flex;
  min-width: 100%;
  max-width: 100%;
}

.chartt {
  flex: 3;
  padding-top: 0px;
}

.orderbook {
  flex: 1;
  padding: 10px;
  background: #111;
  font-size: 13px;
  padding-top: 10px;
}

.orderbook-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: bold;
}

.bids div,
.asks div {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
}

.bids div {
  color: #0f0;
  background: rgba(0, 255, 0, 0.05);
}

.asks div {
  color: #f00;
  background: rgba(255, 0, 0, 0.05);
}

/* --- Bot Section Styling --- */
.bot-section-s {
  background-color: #111;
  padding: 20px;
  margin-top: 20px;
  border-top: 1px solid #222;
}

.tabs-s {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-s {
  background: #1a1a1a;
  color: #ccc;
  padding: 6px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.tab-s.active-s {
  border-bottom: 2px solid #fff;
  color: #fff;
}

.right-options-s {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-empty-s {
  text-align: center;
  color: #888;
  padding: 40px 0;
}

.bot-empty-s p {
  margin-top: 10px;
  font-size: 14px;
}

.create-btn-s {
  background: #f4511e;
  border: none;
  padding: 8px 18px;
  margin-top: 12px;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.create-btn-s:hover {
  background: #d84315;
}

@media (max-width: 1190px) {
.mainn{
    flex-direction: column;
}
}