.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff8f8;
    color: #333;
    padding: 25px;
    box-shadow: 0 0px 25px #319b14;
    border: 2px #319b14 solid;
    border-radius: 0.5em;
    z-index: 9999;
    max-width: 500px;
    font-family: sans-serif;
}
.darkmode .cookie-container {background-color: #686868; color: #fff; text-shadow: 1px 1px 5px #000000;}

.cookie-content h3 {
    margin-top: 0;
    font-size: 1.2rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn-primary {
    background-color: #195807;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0.5em;
    cursor: pointer;
    flex: 1;
}
.btn-primary:hover {background-color: #113f05;}

.btn-secondary {
    background-color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
}
.btn-secondary:hover {background-color: #d1d1d1;}

.cookie-options {
    margin: 15px 0;
    text-align: left;
    font-size: 0.9rem;
}

.cookie-checkbox-group {
    margin-bottom: 8px;
}

.cookie-checkbox-group input {
    margin-right: 10px;
    cursor: pointer;
}

/* CSS pre skrytie banneru */
.hidden {
    display: none !important;
}

/* Štýl pre odkazy v texte */
.cookie-link {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    text-decoration: none;
    color: #0056b3;
}

/* Štýl pre malé popisy pod checkboxami */
.cookie-desc {
    display: block;
    font-size: 0.8rem;
    margin: 2px 0 12px 26px; /* Zarovnanie pod text checkboxu */
    line-height: 1.3;
}

/* Zvýraznenie skupiny checkboxov */
.cookie-checkbox-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.cookie-checkbox-group:last-child {
    border-bottom: none;
}

/*.link-btn {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font: inherit;
}
*/

.cookie-footer-links {
    margin-top: 15px;
    font-size: 0.90rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.cookie-footer-links a:link		{text-decoration: none; color:#195807; text-decoration: none; margin: 0 5px;}
.cookie-footer-links a:visited	{text-decoration: none; color:#195807; text-decoration: none; margin: 0 5px;}
.cookie-footer-links a:hover	{text-decoration: none; color:#195807; text-decoration: underline; margin: 0 5px;}
.cookie-footer-links a:active	{text-decoration: none; color:#195807; text-decoration: none; margin: 0 5px;}

.darkmode .cookie-footer-links a:link		{text-decoration: none; color:#c0ffaf; text-decoration: none; margin: 0 5px;text-shadow: 1px 1px 5px #000000;}
.darkmode .cookie-footer-links a:visited	{text-decoration: none; color:#c0ffaf; text-decoration: none; margin: 0 5px;text-shadow: 1px 1px 5px #000000;}
.darkmode .cookie-footer-links a:hover	{text-decoration: none; color:#c0ffaf; text-decoration: underline; margin: 0 5px;text-shadow: 1px 1px 5px #000000;}
.darkmode .cookie-footer-links a:active	{text-decoration: none; color:#c0ffaf; text-decoration: none; margin: 0 5px; text-shadow: 1px 1px 5px #000000;}


.cookie-settings-footer {
    padding: 10px 0;
    text-align: center;
}

/* Skrytie banneru po odsúhlasení (budeme ovládať cez JS) */
.hidden {
    display: none;
}