.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    padding: 10px;
    font-size: 14px;
}

.cookie-content {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 10px;
}

.cookie-content p {
    /* margin: 0; */
    /* flex: 1; */
    /* min-width: 300px; */
    /* line-height: 1.5; */
    padding-block: inherit;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner .cookie-accept {
    background-color: #a80f44;
    color: white;
    border: none;
    padding: 0;
    /* border-radius: 4px; */
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: inherit;
    width: 100px;
    height: 34px;
}

.cookie-accept:hover {
    background-color: #8a0d39;
}

.cookie-banner .cookie-policy {
    background-color: transparent;
    color: #a80f44;
    border: 1px solid #a80f44;;
    padding-top: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: inherit;
    width: 100px;
    height: 34px;
    text-align: center;
}

.cookie-policy:hover {
    background-color: #f8f9fa;
}