<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --bg-color: #f4f4f4;
  --text-color: #121212;
  --ac-color:#fff;
}

[data-theme="dark"] {
  
  --bg-color: #121212;
  --text-color: gray;
  --ac-color:rgb(43, 41, 41);
}
.nocopy {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.circle-container {
  text-align: center;
}
canvas {
  max-width: 150px;
  margin: auto;
}
.label-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
img {
  width: 20px;
  height: 20px;
}
.price-ticker-wrapper {
  overflow: hidden;
  background: #4b6fc2;
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 20px;
}
.short-wrapper {
  overflow: hidden;
  background: #b00;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 20px;
  padding-right: 5px;
}
.long-wrapper {
  overflow: hidden;
  background: green;
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  margin-bottom: 20px;
}
.price-ticker {
  display: inline-block;
  white-space: nowrap;
}
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background-color: var(--bg-color);
  color: var(--text-color);
}
.popup {
  background: var(--ac-color);
}
.account {
  background: var(--ac-color);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px;
  margin-bottom: 10px;
}
.short{
  background-color: #f5b9b9;
}
.long{
  background-color: #b8f7b8;
}
h3 {
  text-align: right;
  font-size: 22px !important; 
}
h4 {
  font-size: 16px !important; 
  padding-bottom: 0px;
}
.summary {
  font-weight: bold;
  color: #b00;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th, td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}
th {
  background-color: #f0f0f0;
}
.profit-negative {
  color: rgb(221, 58, 58);
}
.profit-positive {
  color: rgb(49, 161, 49);
}

.login-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  width: 100%;
  max-width: 350px;
}
.btn-primary {
  background: #007bff;
  border: none;
  border-radius: 6px;
}


@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  .mobile {
    display: none;
  }
  .account {
    padding: 15px;
  }
  table th, table td {
    padding: 6px;
    font-size: 13px;
  }
  .summary {
    font-size: 14px;
  }
}</pre></body></html>