:root {
    --primary-color: #f4f4f4;
    --primary-light-color: #FFE769;
    --secondary-color: #FFE4BA;
    --secondary-light-color: #FFF6E8;
    --post-color: #62EEA8;
    --delete-color: #FF9F9F;
    --light-color: #FFFEFC;
    --grey-color: #747E79;
    --dark-color: #000000;

    --primary-font: 'Poppins', sans-serif;
    --seconday-font: 'Poppins', sans-serif;
    
    --border-width: 3px;
    --element-border-radius: 5px;
    
    --button-height: 5px;
    --small-button-height: 2px;
    
    --element-padding: 0.8em;
    
    --maximum-width: 320px;
}

html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    min-height: 100vh;
}

body {
    color: var(--dark-color);
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    padding: 2rem;
    flex: 1;
}

main.canvas-full {
    padding: 0;
    margin: 0;
    background: black;
}

#home-canvas {
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
}
/* === Structure === */

.container {
    max-width: var(--maximum-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}


/* === Navbar === */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1a1a;
    color: black;
    box-shadow: 0px 8px 16px -4px rgba(128, 128, 128, 0.2);
    width: 100%;
    
}

.logo-img {
    width: 80px;
    height: 80px;
    margin-left: 1rem;
    border-radius: 40px;
    box-shadow: 0px 1px 3px -2px rgba(128, 128, 128, 0.2);
    border: 2px solid black;
}

.logo {
    font-size: 3rem;
    text-decoration: none;
    color: white;
}

.navbar a {
    text-decoration: none;
    color: #ffbb5c;
    padding: 1.5rem 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.navbar-right {
    display: flex;
    align-items: center; 
    margin-right: 2rem;
}

.navbar a:hover {
    background-color: #333;
    color: white;
}


/* Style the dropdown button */
.dropdown {
    position: relative; /* This makes the positioning of the dropdown content relative to this container */
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    box-shadow: 0px 8px 16px 0px rgba(128, 128, 128, 0.2);
    z-index: 1;
    margin-top: 1.5rem;
    right: 0; 
    left: auto;
    white-space: nowrap;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #b95b0e;
    padding: 1rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left; /* Ensure text is aligned to the left */
}


/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* === Hamburger Menu === */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
}

.closebtn {
    display: none;
}

.hide {
    display: none;
}





/* === Buttons === */

button {
    font-weight: 600;
    width: 100%;
}

button:hover {
    cursor: pointer;
}


/* === Forms === */

input, button {
    padding: var(--element-padding);
    border-radius: var(--element-border-radius);
    width: 100%;
    font-size: 1.1em;
    text-align: center;
}
/* Auth page styles - Login, Signup, Forgot Password */

.auth-page_container {
    display: flex;
    flex-direction: column;
    align-items: center;



}

.login-form-container {
    display: flex;
    justify-content: center;
    /* align-items: center;  */
    width: 100%;
    max-width: 400px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    z-index: 10;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
}
  
.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
  
.input-group {
    margin-bottom: 20px;
}
  
.input-group label {
    display: block;
    margin-bottom: 5px;
}
  
.input-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: calc(100% - 20px);
}
  
.input-group, .login-btn, .google-login-btn {
    width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.input-group {
    flex-direction: column;

}

.login-btn {
    background-color: #007bff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    font-weight: 500;
    color: white;
    cursor: pointer;
    height: 2.5rem;
    font-size: 1.2rem;
}

.login-btn:hover {
    transition: all 0.2s ease;
    transform: scale(1.05);
}

.google-login-btn {
    color: var(--dark-color);
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    border: 1px solid rgba(0, 0, 0, 0.25);  
}

.google-login-btn:hover {
    transition: all 0.2s ease;
    transform: scale(1.05);
}

.google-btn-logo {
    width: 1.375em;
}

.alt-signin-divider {
    margin: 1em 0;
    text-align: center;
    font-size: 0.875em;
    color: var(--dark-color);
}

.signup-link-container {
    text-align: center;
    margin-top: 1em;
}

.error-msg {
    color: red;
    font-size: 1rem;
    margin-top: 0.5em;
    text-align: center;
}

.login-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    max-width: 10rem;
    margin-top: 1rem;
    height: 2.5rem;
    cursor: pointer;
    background-color: rgb(202, 195, 195);
    border: none;
}

.login-link-btn:hover {
    background-color: var(--grey-color);
    border: none;
    color: white;
}

/* Footer Styles */

footer {
    background-color: #1a1a1a; /* Light grey background */
    color: white; /* Dark grey text */
    font-family: var(--primary-font);
    text-align: center; /* Centering the content */
    padding: 10px 0; /* Padding above and below */
    font-size: 14px; /* Standard font size */
}

.simple-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem; /* Padding on the sides */
}

.simple-footer a {
    color: white; /* Standard link color */
    text-decoration: none; /* No underlines on links */
    margin: a; /* Margins for spacing */
}

.simple-footer a:hover {
    text-decoration: underline; /* Underline on hover for better user interaction */
}





/* Responsive */
@media screen and (max-width: 600px) {

    .navbar-right {
        position: fixed; 
        top: 0;
        left: -100%; 
        flex-direction: column;
        justify-content: center; 
        align-items: center; 
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color); 
        overflow-x: hidden; /* Prevent horizontal scroll */
        overflow-y: auto;
        transition: 0.5s; /* Smooth transition for sliding in/out */
        padding: 0;
        padding-bottom: 40rem;
        margin: 0;
    }

    .navbar-right a {
        color: black;
        padding: 15px;
        text-decoration: none;
        font-size: 2rem;
        display: block; /* Ensure links take full width */
        transition: 0.3s; /* Smooth transition for hover effect */
    }

    .navbar a:hover {
        
        background-color: inherit;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: relative;
        width: 100%;
        right: auto;
        text-align: center;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
        overflow-y: auto;
        
    }

    .dropdown-content a {
        padding: auto;
        text-align: center;
        font-size: 1.6rem;
        color: gray;
    }


    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
        font-size: 2.2rem;
    }

    .closebtn {
        display: block;
        position: absolute;
        top: 0;
        right: 1rem;
        font-size: 3rem;
        cursor: pointer;
        color: black
    }

    .simple-footer {
        flex-direction: column;
        padding: 0;
    }
}

/* =============================================================
   DASHBOARD PAGE - MODERN FUTURISTIC STYLING
   Theme: Black/Grey with Orange/Neon-Orange Gradients
   ============================================================= */

.dashboard-page {
  max-width: 100%;
  margin: 0;
  padding: 40px 20px 40px 60px;
  font-family: 'Poppins', sans-serif;
  color: #000000;
  min-height: 100vh;
}

.dashboard-page h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 54px;
  margin-left: 0;
  text-align: left;
  background: linear-gradient(135deg, #ff6b00, #ff9500, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.4));
  letter-spacing: 1px;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(255, 107, 0, 0.3)); }
  50% { filter: drop-shadow(0 0 25px rgba(255, 107, 0, 0.5)); }
}

/* Horizontal Divider */
.dashboard-page hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(255, 107, 0, 0.6), 
    rgba(255, 149, 0, 0.8), 
    rgba(255, 107, 0, 0.6), 
    transparent
  );
  margin: 60px 0;
  max-width: 850px;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.3);
}

/* =============================================================
   ACCOUNT SECTIONS - FAR LEFT ALIGNED, VERTICALLY STACKED
   ============================================================= */

.Live-Account-Section,
.Paper-Account-Section {
  max-width: 820px;
  margin-bottom: 15px;
  margin-left: 0;
  animation: slide-in-left 0.6s ease-out;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* =============================================================
   LIVE ACCOUNT + RIGHT WIDGETS LAYOUT
   ============================================================= */

.live-and-heatmap-container {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  margin-bottom: 1px;
}

.live-and-heatmap-container  {
  flex: 1;
  max-width: 820px;
}

.Live-Account-Section {
  flex: 1;
}
.right-widgets {
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 914px;
  flex-shrink: 0;
}

.heatmap-widget,
.Stories-widget {
  width: 100%;
  background: black;
  border: 2px solid rgba(100, 100, 100, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.Stories-widget {
  height: 500px;
}
.heatmap-widget {
  height: 600px;
}

/* Jarvis Widget Window */

.heatmap-widget:hover,
.Stories-widget:hover {
  border-color: rgba(255, 149, 0, 0.5);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(255, 149, 0, 0.15);
}

/* =============================================================
   PANEL STYLING - FUTURISTIC CARDS
   ============================================================= */

.panel {
  background: linear-gradient(145deg, #1a1a1a, #252525);
  border: 2px solid rgba(80, 80, 80, 0.5);
  border-radius: 1px;
  padding: 35px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 107, 0, 0.08), 
    transparent
  );
  transition: left 0.7s ease;
}

.panel:hover::before {
  left: 100%;
}

.panel:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 107, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Live Account Panel - Green Accent */
.live-panel {
  border-color: rgb(200, 111, 9, 0.3);
}

.live-panel:hover {
  border-color: rgb(255, 179, 92, 0.6);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 30px rgb(255, 255, 255, 0.2);
}

/* Paper Account Panel - Orange Accent */
.paper-panel {
  border-color: rgba(255, 107, 0, 0.3);
}

.paper-panel:hover {
  border-color: rgba(255, 107, 0, 0.6);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 107, 0, 0.2);
}

/* =============================================================
   HEADINGS
   ============================================================= */

.panel h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: 0.5px;
}

.panel h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, currentColor, transparent);
  border-radius: 2px;
}

.panel h3 {
  font-size: 14px;
  font-weight: 600;
  color: #b0b0b0;
  margin: 30px 0 15px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* =============================================================
   SUMMARY SECTION
   ============================================================= */

.summary {
  background: linear-gradient(135deg, rgba(40, 40, 40, 0.6), rgba(30, 30, 30, 0.8));
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 30px;
  font-size: 16px;
  color: #d0d0d0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.summary:hover {
  border-color: rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, rgba(45, 45, 45, 0.6), rgba(35, 35, 35, 0.8));
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.4);
}

.summary strong {
  color: #ff9500;
  font-weight: 600;
}

/* =============================================================
   DASHBOARD GRID - ORDER FORMS & ACTIVE POSITIONS
   ============================================================= */

.dashboard-grid {
  display: grid;
  grid-template-columns: 400px 320px;
  gap: 25px;
  margin-bottom: 30px;
}

/* =============================================================
   MANUAL ORDER FORM PANELS - VISUALLY DISTINCT
   ============================================================= */

.live-order-panel,
.paper-order-panel {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.95));
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 
    0 6px 24px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.live-order-panel::before,
.paper-order-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #ff6b00, #ff9500, #ffb347, #ff6b00);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.live-order-panel:hover::before,
.paper-order-panel:hover::before {
  opacity: 1;
  animation: border-glow 2s linear infinite;
}

@keyframes border-glow {
  0% { filter: brightness(1) drop-shadow(0 0 8px rgba(255, 107, 0, 0.4)); }
  50% { filter: brightness(1.2) drop-shadow(0 0 16px rgba(255, 149, 0, 0.6)); }
  100% { filter: brightness(1) drop-shadow(0 0 8px rgba(255, 107, 0, 0.4)); }
}

.live-order-panel:hover,
.paper-order-panel:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 36px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(255, 107, 0, 0.15);
}

.Live-account-title {
  color: rgba(255, 149, 0, 0.6);
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.webhook-url-box {
  border: 3px rgba(255, 149, 0, 0.3);
  background-color: #595959;
  border-radius: 3px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 
  0 4px 15px rgba(255, 107, 0, 0.35),
  inset 0 1px 0 rgba(255, 255, 255, 0.2);
  padding: 10px;
  color: white;
  text-align: center;
}
.order-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 500;
  color: #e6e6e6;
  gap: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  
}

.order-form input[type="text"],
.order-form input[type="number"],
.order-form select {
  background: rgba(15, 15, 15, 0.9);
  border: 2.3px solid rgba(100, 100, 100, 0.4);
  border-radius: 10px;
  padding: 13px 16px;
  color: #e8e8e8;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.order-form input:focus,
.order-form select:focus {
  border-color: #ff9500;
  background: rgba(20, 20, 20, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.12);
  transform: translateY(-1px);
}

.order-form input::placeholder {
  color: #555555;
}

/* =============================================================
   ACTIVE POSITIONS - SMALLER WIDTH, DISTINCT BORDER
   ============================================================= */

.dashboard-grid > div:nth-child(2) {
  position: relative;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.7), rgba(15, 15, 15, 0.85));
  border: 2px solid rgba(255, 149, 0, 0.3);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 
    0 5px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

.dashboard-grid > div:nth-child(2):hover {
  border-color: rgba(255, 149, 0, 0.6);
  transform: translateY(-3px) scale(1.01);
  box-shadow: 
    0 8px 28px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(255, 149, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-grid > div:nth-child(2)::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(255, 149, 0, 0.1) 50%, 
    transparent 70%);
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.dashboard-grid > div:nth-child(2):hover::after {
  opacity: 1;
  animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn-buy,
.panel button {
  background: linear-gradient(135deg, #ff6b00, #ff8500);
  color: white;
  border: none;
  border-radius: 11px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(255, 107, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 6px;
}

.btn-buy::before,
.panel button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-buy:hover::before,
.panel button:hover::before {
  width: 350px;
  height: 350px;
}

.btn-buy:hover,
.panel button:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 25px rgba(255, 107, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-buy:active,
.panel button:active {
  transform: translateY(0);
  box-shadow: 
    0 2px 10px rgba(255, 107, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* =============================================================
   TABLES - SMALLER WIDTH, LIGHTER BG, INDIVIDUAL CELL EFFECTS
   ============================================================= */

.panel > h3 + table,
.panel > h3 + p {
  max-width: 650px;
}

.panel table {
  width: 100%;
  max-width: 650px;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(35, 35, 35, 0.5), rgba(28, 28, 28, 0.6));
}

.panel thead {
  background: linear-gradient(135deg, #2d2d2d, #222222);
}

.panel thead th {
  color: #ff9500;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  padding: 16px 18px;
  text-align: left;
  border-bottom: 2px solid rgba(255, 107, 0, 0.35);
  position: relative;
  transition: all 0.3s ease;
}

.panel thead th:hover {
  color: #ffb347;
  background: rgba(255, 107, 0, 0.08);
}

.panel tbody tr {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.6), rgba(36, 36, 36, 0.7));
  transition: all 0.25s ease;
}

.panel tbody tr:hover {
  background: linear-gradient(135deg, rgba(50, 50, 50, 0.8), rgba(42, 42, 42, 0.9));
  box-shadow: -6px 0 18px rgba(255, 107, 0, 0.12);
}

.panel tbody td {
  padding: 16px 18px;
  color: #d8d8d8;
  font-size: 14px;
  border-bottom: 1px solid rgba(70, 70, 70, 0.4);
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* Individual cell hover effects */
.panel tbody td:hover {
  background: rgba(255, 107, 0, 0.08);
  color: #ffffff;
  font-weight: 500;
  z-index: 2;
}

/* Symbol cells - special styling */
.panel tbody td:first-child {
  font-weight: 600;
  color: #ff9500;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.panel tbody td:first-child:hover {
  color: #ffb347;
  text-shadow: 0 0 8px rgba(255, 149, 0, 0.4);
}

/* Side column (buy/sell) - color coding */
.panel tbody td:nth-child(2) {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}

.panel tbody tr:hover td:nth-child(2) {
  animation: pulse-side 0.8s ease-in-out;
}

@keyframes pulse-side {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Quantity cells */
.panel tbody td:nth-child(3):hover {
  color: #66d9ef;
}

/* Status cells */
.panel tbody td:nth-child(4) {
  font-weight: 500;
  font-size: 13px;
  text-transform: capitalize;
}

.panel tbody td:nth-child(4):hover {
  color: #ff6600;
}

/* Filled At timestamp */
.panel tbody td:nth-child(5) {
  color: #a0a0a0;
  font-size: 12px;
  font-family: 'Courier New', monospace;
}

.panel tbody td:nth-child(5):hover {
  color: #ffc966;
  letter-spacing: 0.5px;
}

.panel tbody tr:last-child td {
  border-bottom: none;
}

/* =============================================================
   EMPTY STATE MESSAGES
   ============================================================= */

.panel p {
  color: #888888;
  font-style: italic;
  text-align: center;
  padding: 30px;
  background: rgba(25, 25, 25, 0.6);
  border-radius: 10px;
  border: 1px dashed rgba(100, 100, 100, 0.3);
  max-width: 650px;
  transition: all 0.3s ease;
}

.panel p:hover {
  background: rgba(30, 30, 30, 0.7);
  border-color: rgba(255, 107, 0, 0.3);
}

/* =============================================================
   RESPONSIVE DESIGN
   ============================================================= */

@media (max-width: 900px) {
  .dashboard-page {
    padding: 30px 20px;
  }

  .dashboard-page h1 {
    font-size: 32px;
    text-align: center;
  }

  .Live-Account-Section,
  .Paper-Account-Section {
    max-width: 100%;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 25px;
  }

  .summary {
    flex-direction: column;
    gap: 15px;
  }

  .panel table,
  .panel > h3 + table,
  .panel > h3 + p {
    max-width: 100%;
  }
}

.order-form {
    user-select: auto;
    pointer-events: auto;
}

.dashboard-body {
    background-color: #0c0a09;
    min-height: 100vh;
}



