@font-face {
  font-family: "Exo2";
  src: url("../fonts/Exo2-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html, body {
  margin: 0;
  padding: 0;
}

.bg {
	position: fixed;
	inset: 0;
	z-index: -1;
  	background: linear-gradient(
    	to bottom right,
        #e5f500ff 0%, /* Žlutá */
        #15b0cdff 35%,/* Modrá */
        #042731ff 50%,/* Tmavě modrá */
        #15b0cdff 65%,/* Modrá */
        #e5f500ff 100% /* Žlutá */
  	);
}

body {
    font-family: "Exo2", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.header {
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px) saturate(70%);
    -webkit-backdrop-filter: blur(3px) saturate(70%);
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    border: 1px solid white;
    border-radius: 30px;
    box-shadow: 6px 6px black;
}

section{
    margin-bottom: 3rem;
}

.header h1{
    font-size: 3rem;
    color: #e5f500ff;
    text-shadow: 2px 2px 3px black;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
}

.box{
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px) saturate(70%);
    -webkit-backdrop-filter: blur(3px) saturate(70%);
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    padding: 2rem;
    border: 1px solid white;
    border-radius: 30px;
    box-shadow: 6px 6px black;
}

.cal ul{
  list-style: disc;
  padding: 0;             
  margin: 0 auto;         
  column-count: 4;
  column-gap: 6rem;       
  width: fit-content;
  padding-bottom: 2rem;
  /* text-shadow: 1px 1px 1px #15b0cdff; */
}

@media (max-width: 600px) {
    .cal ul {
        column-count: 2;
        width: 100%;
        padding-left: 1rem;   
    }
}

.cal ul li::marker {
  font-size: 2rem;
}

.cal ul li:nth-child(1)::marker { color: #02f7ff; }
.cal ul li:nth-child(2)::marker { color: #616161; }
.cal ul li:nth-child(3)::marker { color: #fff200; }
.cal ul li:nth-child(4)::marker { color: #ff4000; }
.cal ul li:nth-child(5)::marker { color: #cc01ff; }
.cal ul li:nth-child(6)::marker { color: #012aff; }
.cal ul li:nth-child(7)::marker { color: #02ff55; }
.cal ul li:nth-child(8)::marker { color: #5c4443; }

.caldesctop{
    display: block;
    width: 100%;
	height: 600px;
    border: none;
    border-radius: 30px;
}

.calmobile{
    display: none;
}

@media (max-width: 600px) {
    .caldesctop{
       display: none;
    }
    
    .calmobile{
       display: block;
       width: 100%;
	   height: 500px;
       border: none;
       border-radius: 30px;
    }
    
}

.manual {
    display: flex;    
    align-items: stretch;
}

.manual-left {
    flex-direction: column;
}

.manual-left .box {
    flex: 1;
}

.manual-left,
.manual-right {
    flex: 1;
    display: flex;
}

.box h2{
    text-align: center;
    font-size: 1.5rem;
    color: #e5f500ff;
    text-shadow: 2px 2px 3px black;  
}

/* Všechny texty + čísla v ol (přes ::before) */
.box p,
.box ul,
.box th,
.box ol li {
    color: #15b0cdff;
    text-shadow: 0px 0px 1px #042731ff, 
1px 1px 2px black;
}

/* Pouze odstavce centrované */
.box p {
    text-align: center;
}

.link,
.ical {
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@media (max-width: 600px) {
    .manual {
        flex-direction: column;
    }
}

.tablesec{
    width: 100%;
}

.table {
    width: 100%;
    min-width: 330px;
    border-collapse: separate;
    border-spacing: 1rem 0;
    background-color: transparent;
}

.box.tablesec {
    flex: 1;
    min-width: 0;
}

.table-wrap {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
    .table{
    width: 100%;
}
}

.table thead th {
    background-color: #042731ff;
    border-radius: 30px;
    color: #e5f500ff;
    text-align: center;
    padding: 0.75rem;
    border-bottom: 2px solid black;
}

.table tbody th,
.table td {
    padding: 0.75rem;
    border-bottom: 1px solid white;
    background-color: transparent;
    /* color: black;
    text-shadow: 1px 1px 1px #15b0cdff; */
    text-align: center;
}

.navod{
    display: flex;
    align-items: stretch;
}

.apple,
.android {
    flex: 1;
    display: flex;
    font-size: 1.2rem;
}

/* .apple,
.android ol {
    text-shadow: 1px 1px 1px #15b0cdff;
} */

@media (max-width: 600px) {
    .navod {
        flex-direction: column;
    }
}

footer {
        margin-bottom: 2rem;
}

a,
a:visited,
a:hover,
a:active {
    color: inherit;
    text-decoration: underline;
}