/* -------------------------------------------------------------------
 * Colours for the CumulusMX Alternative Interface
 * Produced using w3Schools colour generator
 *
 * Key Colour: #4e5b31
 *
 * Theme modified to change font 'color's to either lightest or darkest
 * theme colour. Also modified names for text, borders & hover colours.
 * I have added a few extras. Not all are used.
 * Neil Thomas
 * ------------------------------------------------------------------ */

body {
  background-color: white;
  margin: 0;
  padding: 0;
}

/* Theme Colors */
.w3-theme-white {color:#f7fafc; background-color:#203246;}
.w3-theme-l5    {color:#f7fafc; background-color:#203246;}
.w3-theme-l4    {color:#f7fafc; background-color:#203246;}
.w3-theme-l3    {color:#f7fafc; background-color:#203246;}
.w3-theme-l2    {color:#f7fafc; background-color:#203246;}
.w3-theme-l1    {color:#f7fafc; background-color:#203246;}
.w3-theme-d1    {color:#f7fafc; background-color:#203246;}
.w3-theme-d2    {color:#2e5473; background-color:#f7fafc;}
.w3-theme-d3    {color:#2e5473; background-color:#f7fafc;}
.w3-theme-d4    {color:#2e5473; background-color:#f7fafc;}
.w3-theme-d5    {color:#2e5473; background-color:#f7fafc;} /* Überschrift-Zeile z. B. */

/* Main Theme */
.w3-theme        {color:#f7fafc; background-color:#78a5c9;}
.w3-theme-txt    {color:#78a5c9;}
.w3-theme-bdr    {border-color:#5b5b5b;}
.w3-theme-d5-bdr {border-color:#2e5473;}
.w3-theme-l1-bdr {border-color:#f7fafc;}

.w3-theme-light  {color:#2e5473; background-color:#f7fafc;}
.w3-theme-dark   {color:#f7fafc; background-color:#203246;}
.w3-theme-action {color:#f7fafc; background-color:#2e5473;}

/* Hover Effects */
.w3-theme-hvr:hover      {color:#f7fafc; background-color:#78a5c9;}
.w3-theme-txt-hvr:hover  {color:#78a5c9;}
.w3-theme-bdr-hvr:hover  {border-color:#78a5c9;}
.w3-theme-l2:hover       {color:white; background-color:#3ca8f0 !important;}

/* Hover for rows except excluded classes */
.w3-hoverable tbody tr:not(.w3-theme-d2):not(.w3-theme-d3):not(.w3-theme-d4):not(.w3-theme-d5):hover {
  background-color: #3ca8f0 !important;
  color: white !important;
}



/* Optional: Add class 'no-hover' to any row to disable hover globally */
.w3-hoverable tbody tr.no-hover:hover {
  background-color: inherit !important;
  color: inherit !important;
}

