/* cookie-banner-lolacore.css */
#lcb-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 16px 24px;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

#lcb-cookie-banner.lcb-position-bottom {
    bottom: 0;
    top: auto;
}

#lcb-cookie-banner.lcb-position-top {
    top: 0;
    bottom: auto;
}

.lcb-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lcb-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 auto;
}

.lcb-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.lcb-policy-link {
    font-size: 14px;
    text-decoration: underline;
    color: inherit;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.lcb-policy-link:hover {
    opacity: 1;
}

.lcb-accept-btn {
    border: none;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    font-family: inherit;
    line-height: 1;
}

.lcb-accept-btn:active {
    transform: scale(0.97);
}

@media (max-width: 768px) {
    #lcb-cookie-banner {
        padding: 12px 16px;
    }

    .lcb-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .lcb-actions {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .lcb-accept-btn {
        width: 100%;
    }
}