.cookieModal {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 720px;
    background: #fff;
    border: 2px solid #3B9FE0;
    border-radius: 14px;
    padding: 1.5rem 2rem;
    text-align: center;
    z-index: 9999;
    box-sizing: border-box;
}

    .cookieModal p {
        font-size: 14px;
        line-height: 1.75;
        margin: 0 0 1.25rem;
    }

    .cookieModal a {
        color: #3B9FE0;
        text-decoration: none;
    }

        .cookieModal a:hover {
            text-decoration: underline;
        }

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cookie-accept,
.btn-cookie-reject {
    background: #3B9FE0;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 9px 24px;
    font-size: 14px;
    cursor: pointer;
}

.btn-cookie-settings {
    background: transparent;
    border: 1.5px solid #ccc;
    border-radius: 20px;
    padding: 9px 24px;
    font-size: 14px;
    cursor: pointer;
}

.cookieModal.hidden {
    display: none;
}

.cookie-category {
    margin-bottom: 5px;
}

.cookie-category-header {
    margin-left: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.cookie-category-body {
    margin-left: 10px;
}
