.cookienator-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: var(--bg-panel);
    border-top: 3px solid var(--primary);
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    box-sizing: border-box;
    gap: 20px;
}

.cookienator-text {
    flex: 1;
    font-size: 0.9em;
    color: var(--text-light);
    line-height: 1.5;
}

.cookienator-actions {
    display: flex;
    gap: 10px;
    white-space: nowrap;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookienator-banner {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    .cookienator-actions {
        width: 100%;
        justify-content: center;
    }
}