@media
  only screen
  and (min-device-width               : 768px)
  and (max-device-width               : 1400px)
  and (orientation                    : landscape)
  and (-webkit-min-device-pixel-ratio : 1) {
  
  /* Tablet-specific improvements */
  
  /* Ensure sidebars have proper spacing on tablets */
  section.nz-newsside,
  section.nz-calculatorside {
    max-width: 400px;
  }
  
  /* Optimize header for tablet view */
  body > header > div > div > ul.nz-top-graphlist {
    max-width: 80%;
  }
  
  /* Tablet-friendly close buttons */
  section.nz-newsside > header .lnr-cross,
  section.nz-calculatorside > header .lnr-cross,
  section.nz-orderbookside > header .lnr-cross,
  section.nz-rankingside > header .lnr-cross {
    padding: 14px;
    margin: -10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  
  section.nz-newsside > header .lnr-cross:hover,
  section.nz-calculatorside > header .lnr-cross:hover,
  section.nz-orderbookside > header .lnr-cross:hover,
  section.nz-rankingside > header .lnr-cross:hover {
    background: rgba(255, 255, 255, 0.12);
  }
}
