.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    z-index: 9999;
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.cookie-consent-text p {
    margin: 0;
}

.cookie-consent-text p + p {
    margin-top: 4px;
}

.cookie-accept-btn {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    border: 0;
    border-radius: 4px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
}

.cookie-accept-btn:hover {
    background: #0056b3;
}

.cookie-accept-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .cookie-consent-content {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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