/* FILE: /home/admin/domains/webapp.birtual.com/public_html/assets/css/dashboard-two-col.css */

/* Two-column dashboard grid */
.dashboard-two-col{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 18px;
  align-items: start;
}

/* Make cards behave nicely in grid */
.dashboard-two-col .card{
  margin-bottom: 18px; /* reduce huge spacing inside grid */
}

/* Prevent tipbox inputs from overflowing */
.dashboard-two-col input,
.dashboard-two-col textarea{
  max-width: 100%;
}

/* Right panel sticky feel (optional) */
@media (min-width: 980px){
  .dashboard-right{
    position: sticky;
    top: 18px;
  }
}

/* Mobile: stack */
@media (max-width: 980px){
  .dashboard-two-col{
    grid-template-columns: 1fr;
  }
  .dashboard-right{
    position: static;
  }
}