```css
/* ============================================================
   forecast_table.css
   OK2SVL - upraveno pro správné zarovnání legendy a předpovědi
   ============================================================ */

.fc_table {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}

/* Všechny tabulky uvnitř předpovědi musí mít
   naprosto stejnou geometrii. */
.fc_table table {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

/* Legend, denní souhrn i hodinová předpověď */
.fc_table .legend,
.fc_table .summary,
.fc_table .period {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Základní vlastnosti buněk */
.fc_table td {
  box-sizing: border-box;
  font-size: 90%;
  text-align: center;
  vertical-align: middle;
  padding: 2px 3px;
}

/* ------------------------------------------------------------
   ŠÍŘKY SLOUPCŮ
   Aktuální konfigurace OK2SVL:
   
   datum       8 %
   outlook     8 %
   teplota    10 %
   vítr       12 %
   slunce     10 %
   měsíc      10 %
   fáze       10 %
   PoP        10 %
   srážky     11 %
   oblačnost  11 %
   
   Celkem     100 %
   ------------------------------------------------------------ */

.fc_table .col-date {
  width: 8%;
  min-width: 0;
  cursor: pointer;
}

.fc_table .col-outlook {
  width: 8%;
  min-width: 0;
}

.fc_table .col-temp {
  width: 10%;
  min-width: 0;
}

.fc_table .col-dewpoint {
  width: 10%;
  min-width: 0;
}

.fc_table .col-humidity {
  width: 10%;
  min-width: 0;
}

.fc_table .col-wind {
  width: 12%;
  min-width: 0;
  height: 48px;
}

.fc_table .col-tides {
  width: 15%;
  min-width: 0;
  padding-right: 5px;
}

.fc_table .col-sun {
  width: 10%;
  min-width: 0;
  padding-right: 3px;
}

.fc_table .col-moon {
  width: 10%;
  min-width: 0;
  padding-right: 3px;
}

.fc_table .col-moonphase {
  width: 10%;
  min-width: 0;
  padding-right: 3px;
}

.fc_table .col-pop {
  width: 10%;
  min-width: 0;
}

.fc_table .col-precip {
  width: 11%;
  min-width: 0;
}

.fc_table .col-obvis {
  width: 11%;
  min-width: 0;
}

/* ------------------------------------------------------------
   LEGENDA
   ------------------------------------------------------------ */

.fc_table .legend td {
  text-align: center;
  vertical-align: middle;
  height: 40px;
  padding: 3px;
}

.fc_table .legend-img {
  width: 15px;
  height: 15px;
  border: none;
  display: block;
  margin: 0 auto 2px auto;
}

/* ------------------------------------------------------------
   IKONY POČASÍ
   ------------------------------------------------------------ */

.fc_table .outlook-img {
  width: 32px;
  height: auto;
  border: none;
  display: block;
  margin: 0 auto;
}

.fc_table .precip-img {
  width: 32px;
  height: auto;
  border: none;
  display: inline-block;
  margin: 0 auto;
}

.fc_table .obvis-img {
  width: 32px;
  height: auto;
  border: none;
  display: block;
  margin: 0 auto;
}

.fc_table .pop-img {
  width: 8px;
  height: auto;
  border: none;
  display: inline-block;
}

/* ------------------------------------------------------------
   VÍTR
   ------------------------------------------------------------ */

.fc_table .col-wind {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.fc_table .windgust {
  color: #aaaaaa;
}

.fc_table .winddir {
  color: #aaaaaa;
}

.fc_table .winddir-img {
  width: 32px;
  height: auto;
  border: none;
}

/* ------------------------------------------------------------
   TEXTOVÉ STYLY
   ------------------------------------------------------------ */

.fc_table .units {
  color: #aaaaaa;
  white-space: nowrap;
}

.fc_table .day {
  font-size: 120%;
  font-weight: bold;
  color: #207020;
}

.fc_table .hour {
  font-size: 80%;
}

.fc_table .date {
  font-size: 80%;
  white-space: nowrap;
}

.fc_table .temphi {
  color: #ff4444;
}

.fc_table .templo {
  color: #4444ff;
}

.fc_table .tide-hilo {
  color: #aaaaaa;
}

/* ------------------------------------------------------------
   VNITŘNÍ TABULKA PŘÍLIVU
   ------------------------------------------------------------ */

.fc_table .col-tides table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
}

/* ------------------------------------------------------------
   ODDĚLENÍ JEDNOTLIVÝCH DNŮ
   ------------------------------------------------------------ */

.fc_table .summary {
  border-top: 1px solid #dddddd;
}

.fc_table .summary:first-of-type {
  border-top: none;
}

.fc_table .period {
  border-bottom: 1px solid #dddddd;
}

/* ------------------------------------------------------------
   ZDROJ PŘEDPOVĚDI
   ------------------------------------------------------------ */

.fc_table .sources {
  width: 100%;
}

.fc_table .sources p {
  font-size: 80%;
  font-style: italic;
  color: #aaaaaa;
}

/* ------------------------------------------------------------
   MOBIL
   ------------------------------------------------------------ */

@media screen and (max-width: 600px) {

  .fc_table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .fc_table table {
    min-width: 600px;
  }

  .fc_table td {
    font-size: 85%;
    padding: 2px;
  }

  .fc_table .legend-img {
    width: 14px;
    height: 14px;
  }

  .fc_table .outlook-img {
    width: 28px;
  }

  .fc_table .precip-img,
  .fc_table .obvis-img {
    width: 28px;
  }
}