/* Mobile tweaks for edo.asp */
@media (max-width: 768px) {

  /* Hide BOTH left sidebar cells (top tiny one and bottom big one) */
  table[width="100%"][cellpadding="2"] td[width="160"] {
    display: none !important;
  }

  /* Make the main content column (the one with rowspan=2) full width */
  table[width="100%"][cellpadding="2"] td[rowspan="2"][valign="top"] {
    display: block !important;
    width: 100% !important;
  }

  /* Stack the two middle cells (latest news + decisions) into ONE column */
  table[width="100%"][cellpadding="10"] {
    display: block !important;
  }
  table[width="100%"][cellpadding="10"] tr {
    display: block !important;
  }
  table[width="100%"][cellpadding="10"] td {
    display: block !important;
    width: 100% !important;
    vertical-align: top !important;
    box-sizing: border-box;
  }
  /* Remove any leftover 50% widths from attributes */
  td[width="50%"] { width: auto !important; }

  /* Let lists expand naturally and start at the top */
  #Layer1,
  #Layer2 {
    height: auto !important;
    overflow: visible !important;
    float: none !important;
  }
}
