.cookie-banner {
display: none; position: fixed;
bottom: 15px;
left: 15px;
z-index: 9999;
background: #000;
color: #fff;
padding: 15px;
border-radius: 8px;
max-width: 320px;
font-size: 14px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
line-height: 1.5;
}
.cookie-buttons {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
gap: 10px;
margin-top: 10px;
}
.cookie-button {
background: rgb(22, 29, 106); color: #fff;
border: none;
padding: 6px 12px;
border-radius: 4px;
cursor: pointer;
flex-grow: 1;
text-align: center;
transition: opacity 0.2s ease; }
.cookie-button:hover {
opacity: 0.8;
} .cookie-button-secondary {
background: #666;
}   .cookie-banner a {
color: #fff; text-decoration: underline;
}   .cookie-settings-modal {  position: fixed; left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6); z-index: 10000; display: flex; justify-content: center;
align-items: center;  opacity: 0; visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
} .cookie-settings-modal[style*="display: block"] {
opacity: 1;
visibility: visible;
}
.cookie-settings-content {
background-color: #fff; color: #333; padding: 25px;
border-radius: 8px;
max-width: 500px; width: 90%; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
position: relative; max-height: 80vh; overflow-y: auto; transform: scale(0.95); transition: transform 0.3s ease;
}
.cookie-settings-modal[style*="display: block"] .cookie-settings-content {
transform: scale(1);
}
.cookie-settings-close-button {
position: absolute;
top: 10px;
right: 15px;
background: none;
border: none;
font-size: 28px; line-height: 1; font-weight: bold;
cursor: pointer;
color: #aaa; padding: 5px; }
.cookie-settings-close-button:hover {
color: #000;
}
.cookie-setting-category {
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #eee;
}
.cookie-setting-category:last-of-type {
border-bottom: none;
margin-bottom: 0; padding-bottom: 0; }
.cookie-setting-category label {
display: flex;
align-items: center;
gap: 8px; cursor: pointer;
font-weight: bold; }
.cookie-setting-category input[type="checkbox"] {
width: 18px;
height: 18px;
flex-shrink: 0; }
.cookie-setting-description {
font-size: 0.9em;
color: #666;
margin-top: 5px;
margin-left: 26px; line-height: 1.4;
}
.cookie-settings-actions {
margin-top: 25px; padding-top: 15px; border-top: 1px solid #eee; display: flex;
flex-wrap: wrap;
gap: 10px;
justify-content: flex-end; } .cookie-settings-actions .cookie-button {
flex-grow: 0; background-color: rgb(22, 29, 106); }
.cookie-settings-actions .cookie-button-secondary {
background-color: #666; }
.cookie-settings-actions #cookie-settings-save {  } @media (max-width: 480px) {
.cookie-banner {
left: 0;
right: 0;
bottom: 0;
border-radius: 0;
max-width: 100%;
font-size: 12px;
}
.cookie-buttons {
flex-direction: row;
justify-content: space-between;
gap: 5px;
}
.cookie-button {
padding: 8px;
font-size: 11px; }
} @media (max-width: 480px) {
.cookie-settings-content {
padding: 15px; max-height: 90vh; }
.cookie-settings-actions {
justify-content: center; }
.cookie-settings-actions .cookie-button {
width: 100%; text-align: center;
}
}