/* Responsive CSS for Nova Theme */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
  
}

/* Medium devices (tablets, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  
}

/* Small devices (landscape phones, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  
}

/* Extra small devices (portrait phones, less than 768px) */
@media (max-width: 767.98px) {
  
}

/* Extra small devices (very small phones, less than 576px) */
@media (max-width: 575.98px) {
  
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
  
}

/* Portrait orientation for mobile devices */
@media (max-width: 768px) and (orientation: portrait) {
  
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  
}

/* Print styles */
@media print {
  body {
    font-size: 12pt;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .no-print {
    display: none !important;
  }
}