#gce-cookie-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    font-family: var(--gce-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: var(--gce-font-size, 14px);
    font-weight: var(--gce-font-weight, 400);
    line-height: 1.5;
}

.gce-banner, .gce-panel {
    background-color: var(--gce-background-color, #fff);
    color: var(--gce-text-color, #333);
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    gap: 15px;
    border-top-left-radius: var(--gce-border-radius, 5px);
    border-top-right-radius: var(--gce-border-radius, 5px);
}

@media (min-width: 768px) {
    .gce-banner, .gce-panel {
        padding: 20px;
    }
    .gce-banner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.gce-banner-content { flex-grow: 1; }
.gce-banner-text { margin: 0; color: inherit; }

.gce-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.gce-btn {
    border: none;
    padding: 5px 20px;
    border-radius: 99px;
    cursor: pointer;
    font-weight: 700;
    font-size: inherit;
    transition: background-color 0.2s ease;
}
.gce-btn-primary { 
    background-color: var(--gce-primary-color, #0073e6); 
    color: #333; 
}
.gce-btn-primary:hover { 
    background-color: var(--gce-primary-color-hover, #005bb5);
}
.gce-btn-secondary { 
    background-color: #f0f0f0; 
    color: #333; 
    border: 1px solid #ccc;
}
.gce-btn-secondary:hover { background-color: #e0e0e0; }

.gce-panel {
    max-height: 80vh;
    overflow-y: auto;
    background-color: white;
    color: #333;
}
.gce-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.gce-panel-title { margin: 0; font-size: 1.2em; font-weight: 700; color: inherit; }
.gce-close-btn { background: none; border: none; font-size: 24px; cursor: pointer; color: #888; }

.gce-panel-body { padding: 15px 0; }
.gce-panel-description { font-size: 1em; color: inherit; }

.gce-cookie-category {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: var(--gce-border-radius, 5px);
    margin-top: 15px;
}
.gce-category-header { font-weight: 700; }
.gce-category-title { margin: 0; font-size: 1.1em; color: inherit; }
.gce-category-description { margin: 5px 0 0 0; font-size: 0.9em; color: #555; }

.gce-panel-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.gce-switch-label { display: flex; justify-content: space-between; align-items: center; width: 100%; cursor: pointer; }
.gce-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.gce-switch input { opacity: 0; width: 0; height: 0; }
.gce-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 24px; }
.gce-slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 4px; bottom: 4px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .gce-slider { background-color: var(--gce-primary-color, #0073e6); }
input:checked + .gce-slider:before { transform: translateX(20px); }

.gce-policy-container {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--gce-border-radius, 5px);
    max-height: 250px;
    overflow-y: auto;
    background-color: #f9f9f9;
    font-size: 0.9em;
    line-height: 1.6;
}

.gce-policy-container h2,
.gce-policy-container h3,
.gce-policy-container h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #333;
}

.gce-policy-container h3 {
    font-size: 1.2em;
}

.gce-policy-container h4 {
    font-size: 1.1em;
}

.gce-policy-container p {
    margin-bottom: 10px;
}

.gce-policy-container ul,
.gce-policy-container ol {
    margin-left: 20px;
    margin-bottom: 15px;
}