.investicna-kalkulacka {
max-width: 1100px;
margin: 30px auto;
padding: 30px;
border-radius: 12px;
background-color: #ffffff;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
font-family: sans-serif;
}
.investicna-kalkulacka .vstupny-blok {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-bottom: 30px;
padding: 20px;
background: #fdfdfd;
border: 1px solid #eee;
border-radius: 8px;
}
.investicna-kalkulacka label {
display: block;
margin-bottom: 6px;
font-weight: 600;
font-size: 0.9em;
}
.investicna-kalkulacka input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.graf-container {
height: 450px;
margin: 20px 0;
}
.vysledky-blok {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
border-top: 2px solid #00a08b;
padding-top: 20px;
}
.vysledky-blok div {
padding: 10px;
border-bottom: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
}
#hodnotaInvesticie {
font-weight: bold;
color: #00a08b;
font-size: 1.2em;
}
#hodnotenieText {
margin-top: 20px;
padding: 15px;
border-radius: 6px;
text-align: center;
font-weight: bold;
}
#tlacidloPdf {
width: 100%;
padding: 15px;
background: #007bff;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
margin-top: 20px;
}
#pdfFooterText { display: none; text-align: center; margin-top: 10px; font-size: 12px; }
@media (max-width: 768px) {
.vysledky-blok { grid-template-columns: 1fr; }
.graf-container { height: 300px; }
}
