.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    border-top: 1px solid #ccc;
    z-index: 9999;
    padding: 16px 24px;
    box-sizing: border-box;
    box-shadow: 0 -2px 4px #00000020;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.cookie-consent__text {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

#cookie-consent .cookie-consent__btn {
    width: 8em;
    text-align: center;
    flex-shrink: 0;
    background-color: #4F17A8;
    color: #fff;
    border: none;
    border-radius: 3px 3px;
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-consent__btn:hover {
    background-color: #3d1283;
}

@media screen and (max-width: 767px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-consent__btn {
        align-self: flex-end;
    }
}
