/* --- ZÁKLADNÉ ŠTÝLY PRE VŠETKY ZARIADENIA (Desktop) --- */
.compound-calculator-wrapper {
margin: 30px auto;
padding: 0 20px;
background-color: transparent;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: #333;
max-width: 1200px;
}
.compound-calculator-wrapper h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
}
/* ŠTÝL CELÉHO FORMULÁRA - viditeľný TIEŇ a RÁMIK na DESKTOPE */
#compoundInputForm {
margin: 0 auto 30px auto;
padding: 30px;
border-radius: 12px;
background-color: #ffffff;
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
border: 1px solid #dcdcdc;
}
/* Vstupný Grid (Desktop: 2 stĺpce) */
.compound-calculator-wrapper .vstupny-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
margin-bottom: 30px;
}
/* Vnútorné skupiny */
.compound-calculator-wrapper .vstupny-skupina {
padding: 0;
border: none;
border-radius: 8px;
}
.compound-calculator-wrapper h3 {
color: #007bff;
margin-top: 0;
margin-bottom: 25px;
border-bottom: 2px solid #007bff;
padding-bottom: 10px;
font-size: 1.3em;
}
/* GRAFICKÝ KONTAJNER (OPRAVA PC: ZVÄČŠENÁ VÝŠKA NA 500PX) */
#compoundChart {
margin-top: 30px;
padding: 20px;
background: #fff;
border-radius: 12px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
height: 500px; /* ZVÄČŠENÁ VÝŠKA */
}
#compoundChartCanvas {
height: 100% !important;
width: 100% !important;
}
/* Vstupné riadky a polia (spoločné) */
.compound-calculator-wrapper .formular-riadok {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
.compound-calculator-wrapper label {
font-weight: 600;
color: #333;
flex-shrink: 0;
margin-right: 15px;
max-width: 65%;
}
.compound-calculator-wrapper .jednotka {
width: 20px;
text-align: right;
flex-shrink: 0;
font-weight: 600;
}
.compound-calculator-wrapper input[type="number"],
.compound-calculator-wrapper select {
width: 100px;
padding: 10px;
border: 1px solid #a9a9a9;
border-radius: 6px;
font-size: 1em;
text-align: right;
box-sizing: border-box;
flex-shrink: 0;
margin-left: auto;
transition: border-color 0.3s;
}
/* Výsledky a Tlačidlá (spoločné) */
.vysledky-compound {
margin: 30px auto;
padding: 30px;
border-radius: 12px;
background-color: #f7f9fc;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.pdf-footer-text {
display: none;
text-align: center;
margin-top: 25px;
padding: 10px;
font-size: 0.9em;
color: #6c757d;
font-style: italic;
border-top: 1px solid #ddd;
}
/* --- ŠTÝLY PRE MOBILNÉ ZARIADENIA (MAX šírka 768px) --- */
@media (max-width: 768px) {
/* OPRAVA MOBILNÉHO FORMULÁRA: Odstránenie celého rámika a tieňa */
#compoundInputForm {
padding: 20px 10px;
box-shadow: none !important;
border-radius: 0;
border: none !important;
}
/* Vnútorné skupiny a grid (mobil: 1 stĺpec, bez rámika) */
.compound-calculator-wrapper .vstupny-grid {
grid-template-columns: 1fr;
gap: 0;
}
.compound-calculator-wrapper .vstupny-skupina {
padding: 0 0 20px 0;
margin-bottom: 20px;
}
/* ÚPRAVA GRAFU PRE MOBIL: Roztiahnutie a zväčšenie */
#compoundChart {
/* Vytiahneme kontajner grafu z okrajov: */
margin-left: -20px;
margin-right: -20px;
width: auto !important;
/* Zrušíme štýly PC a vynútime mobilné rozmery */
background: transparent !important;
box-shadow: none !important;
border-radius: 0;
padding: 10px;
/* Zväčšená, responzívna výška pre lepšiu čitateľnosť */
min-height: 300px;
height: 45vh;
max-height: 450px;
}
/* Canvas v mobilnom zobrazení */
#compoundChartCanvas {
display: block !important;
width: 100% !important;
height: 100% !important;
}
/* Vstupné polia pre lepší mobilný dotyk */
.compound-calculator-wrapper input[type="number"],
.compound-calculator-wrapper select {
width: 120px;
padding: 12px 10px;
}
}
