/* ===== Custom Dark Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0e1624;
  --box: #1f2735;
  --accent: #09ccac;
  --text: #e5e7eb;
}

.box-header {
  position: relative;
  top: -10px;
}

.header{
  margin-bottom: -20px;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

.logo{
  font-family: "Permanent Marker", cursive;
  font-size:20px;
}

.max-w-7xl {
  max-width: 90% !important;
}

.fs-btn{
    position: fixed;
    right: 20px;
    top: 20px;
    cursor: pointer;
    font-size: 20px;
}

@media (max-width: 600px) {
  .max-w-7xl {
    max-width: 100% !important;
  }
  .logo{
    font-family: "Permanent Marker", cursive;
    font-size:25px;
  }
  #timestamp{
    display:none;
  }
  .fs-btn{
    display:none !important;
  }
}

#timestamp{
  position: relative;
  right: 0px;
  font-size: 12px;
  opacity: .5;
  float: right;
  top: 30px;
  font-family: 'Inter';
}

/* Tailwind overrides */
.bg-bg-dark { background: var(--bg-dark);font-size:14px; }
.bg-box     { background: var(--box); }
.text-accent { color: var(--accent); }
.bg-accent   { background: var(--accent); }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px; height: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--box);
  border-radius: 4px;
}

/* Reusable card */
.card {
  background: var(--box);
  border-radius: 4px;
  padding: 1.5rem;
  position: relative;

}

.box-side{
    position: absolute;
    right: 15px;
    top: 15px;
}

.box-holding{
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.box-equity{
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.progress-track {
  background: #253043;
  height: 0.5rem;
  width: 100%;
  border-radius: 9999px;
  overflow: hidden;
}
.progress-bar-green { background: var(--accent); }
.progress-bar-red   { background: #ef4444; }

/* ===== Table cell padding override ===== */
/* Ensures comfortable spacing regardless of Tailwind utility classes in HTML */
table th, table td {
  padding: 0.75rem 1rem !important; /* 12px vertical, 16px horizontal */
}
