/* override table width restrictions */
@media screen and (min-width: 767px) {

   .wy-table-responsive table td {
      /* !important prevents the common CSS stylesheets from overriding
         this as on RTD they are loaded after this stylesheet */
      white-space: normal !important;
   }

   .wy-table-responsive {
      overflow: visible !important;
   }
}

.feature_yes {
   color: darkgreen;
   font-weight: bolder;
}

.feature_no {
   color: darkred;
}


@media (prefers-color-scheme: dark) {

    .feature_yes {
        color: #53b353
    }

    .feature_no {
        color: #ff5454
    }

    .highlight pre {
        background: #282a36 !important;
    }

    .highlight .go {
      color: #98a5f7 !important;
    }
}
