
/* soubor css/styles_global_tables.css */

/*Základní styly:    */

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}


html, body {
    width: 100%;
    max-width: 100%;
    font-family: "Helvetica", Arial, sans-serif  !important;
    color: #333;
}

/* Velikosti jednotlivých nadpisů */
h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica", Arial, sans-serif !important;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    margin: 12px 0 8px 0;
}

h1 { font-size: 2em; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.25em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }

p { text-align: center; }

/* Zpětný odkaz */
.back-link {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
    text-decoration: none;
    color: #007bff;
}

.back-link:hover {
    text-decoration: underline;
}

/* Styl čáry */
hr {
    height: 2px;
    background-color: black;
    border: none;
}

p, div {
    text-align: center;
}

.center-text {
    text-align: center;
    margin: 10px 0;
}

.left-text {
    text-align: left;
    margin: 10px 0;
}

.text-red, .error {
    color:red !important;
}

.text-green, .success {
    color:green;
}

.text-blue {
    color:blue;
}

.text-yellow {
    color:yellow;
}


.row-red {
    background-color: rgba(255,0,0,0.15) !important;
}

.row-green {
    background-color: rgba(49,0,49,0) !important;
}

.row-yellow {
    background-color: rgba(10,0,95,0) !important;
}


.bg-red-hot {
    background-color: #ff0000 !important;
}

.bg-green-hot {
    background-color: #28a745 !important;
}

.font-bigger   {
    font-size: 1.5em !important;
}
.font-smaller   {
    font-size: 0.7em !important;
}

.info-text {
    max-width: 600px; /* nebo kolik se ti hodí */
    /*word-wrap: break-word; *//* zalamování dlouhých slov */
    text-align: center;
    line-height: 1.4;
    margin-bottom: 1em;
}


/* ===============================
   tooltip - kntextové informační okénko po najetí myši
=============================== */

.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip .tooltiptext {
  visibility: hidden;
  min-width: 300px;
  max-width: 400px;
  background-color: #333;
  color: #fff;
  text-align: left;
  border-radius: 5px;
  padding: 8px;
  position: absolute;
  top: 125%;        /* zobraz pod ikonou */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4em;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}






/* POZADI tabulky scorování */
.score-minus2 { background-color: #fff008; }   /* žlutá */
.score-minus1 { background-color: #52e274; }   /* světle zelená */
.score-par { background-color: #f0f0f0; }   /* světle zelená */
.score-plus1  { background-color: #f8d7da; }   /* světle červená */
.score-plus2  { background-color: #e87d86; }   /* tmavší červená */
.score-plus3  { background-color: #dd2435; } /* ještě tmavší červená */
.zero-cell    { background-color: #fff; } /* vykřičník u nuly *//* CSS Document */

.score-ctp1 { background-color: #b0eabe; }
.score-ctp2 { background-color: #52e274; }
.score-ctp3 { background-color: #00ff3c; }
.score-ctp5 { background-color: #fff008; }

/* v styles_results.css nebo styles_global_tables.css */
table .round-complete {
    background-color: #d2edd9 !important;
}

table .round-incomplete {
    background-color: #f8d7da !important;
}

table .tournament-complete {
    background-color: #b0eabe !important;
}

table .tournament-incomplete {
    background-color: #f08f98 !important;
}

.highlight {
    background-color: ##ffff99 !important;
}


.padding-up-bottom-20px  {
    padding: 20px 0;
}


.par-row th {  font-size: 0.7em;  }
.meters-row th { font-size: 0.5em; }

.past-tournament { background-color:#f1f1f1; color:#555; opacity:0.4; }
.today-tournament { background-color:#74ff66; font-weight:bold; border:1px solid #28a745; }
.upcoming-tournament { }


.nav-icons {
    display: flex;
    justify-content: center;  /* horizontálně */
    gap: 8px;
    margin: 10px 0;
    width: 100%;             /* důležité pro správné středění */
}

.nav-icon {
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s;
}

.nav-icon:hover {
    transform: scale(1.3);
}

.font_smaller  {
    font-size:0.8em !important;
    font-weight: normal;
}

.inactive {
    text-decoration: line-through;
}

/* END POZADI tabulky scorování */


/* Zvýrazněný sloupec – větší písmo */
.col-large {
    font-size: 1.5em;
    font-weight: bold;
}

/* Menší písmo – pro názvy turnajů */
.col-small {
    font-size: 0.5em;
}

/* zprůhlednělá tlačítka, která nelze edtovat  */
.btn-disabled {
    opacity: 0.4;           /* průhlednost */
    cursor: not-allowed;    /* kurzor znázorňuje, že nelze kliknout */
    pointer-events: none;   /* zablokuje všechny kliky (dobrovolně, už máme disabled) */
}