/* Binance Style CSS */

/* Import Binance Plex Font */
@font-face {
  font-family: 'BinancePlex';
  src: url('https://fonts.cdn-binance.com/BinancePlex-Regular.woff2') format('woff2'),
       url('https://fonts.cdn-binance.com/BinancePlex-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Reset styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', 'Roboto', sans-serif;
  background-color: #121212;
  color: #e0e6ed;

}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Style */
header {
  background-color: #181A20;
  color: #05ed96;
  padding: 5px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Poppins', 'Roboto', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Layout */
.layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}

/* Left Section */
.left-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 45%;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

/* Input Container */
.bot-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  padding: 20px;
  background: #181A20;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid #087c8b;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

.bot-controls .input-field,
.bot-controls .input-file {
  flex: 1 1 48%;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #353945;
  border-radius: 8px;
  background-color: #20232A;
  color: #e0e6ed;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

.bot-controls .input-field:focus,
.bot-controls .input-file:focus {
  border-color: #05ed96;
  outline: none;
  box-shadow: 0 0 6px rgba(1, 179, 202, 0.5);
}

/* Buttons */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

.buttons-container .btn {
  width: 45%;
  padding: 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

/* Start Button */
.start-btn {
  background: linear-gradient(135deg, #2e6dc3, #00e590);
  color: #121212;
  border: none;
}

.start-btn:hover {
  background: linear-gradient(135deg, #0089e5, #0065d8);
}

/* Stop Button */
.stop-btn {
  background: linear-gradient(135deg, #E84142, #D83738);
  color: white;
  border: none;
}

.stop-btn:hover {
  background: linear-gradient(135deg, #D83738, #C32E2F);
}

/* Log Section */
.log {
  flex: 1;
  width: 50%;
  height: 450px;
  overflow-y: auto;
  background: #181A20;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #20232a;
  font-family: 'BinancePlex', sans-serif;
}
.log p {
  margin: 10px 0;
  padding: 15px;
  font-size: 15px;
  color: #e0e6ed; 
  background: #34495e; 
  border: 1px solid #3a506b; 
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}


.log p:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Scrollbar */
.log::-webkit-scrollbar {
  width: 8px;
}

.log::-webkit-scrollbar-thumb {
  background-color: #05ed96;
  border-radius: 10px;
}

.log::-webkit-scrollbar-track {
  background: #121212;
}

.balance-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  font-size: 12px;
  font-weight: bold;
  background: #181A20;
  color: #087c8b;
  text-align: center;
  border-bottom: 1px solid #ed05a7;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

h1 {
  animation: blink 1s infinite;
}
