
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20;
    //transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-radius: 16px;
    padding: 10px;
    z-index: 10000;
    font-family: system-ui, -apple-system, sans-serif;
    color: #333;
}
.cookie-banner h3 {
    font-size: 18px;
}

.cookie-detailed-settings {
    margin: 20px 0;
    text-align: left;
}
.cookie-item {
    margin-bottom: 8px;
    padding: 8px;
    background: #f9f9f9;
    border-radius: 8px;
}
.cookie-header label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
}
.cookie-desc {
    margin: 8px 0 0 28px;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}
.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.btn-primary { background: #000; color: #fff; border: none; padding: 12px 24px; border-radius: 8px; cursor: pointer; font-weight: 600; flex: 1; min-width: 150px; }
.btn-secondary { background: #eee; color: #333; border: none; padding: 12px 24px; border-radius: 8px; cursor: pointer; font-weight: 600; }
.btn-outline { background: transparent; color: #666; border: 1px solid #ccc; padding: 12px 24px; border-radius: 8px; cursor: pointer; }
.btn-primary:hover { background: #333; }

