
.styled-list ul {
    display: block;
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1 em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}


/* Cookie Banner Styles */
.cookie-banner {
    display: none;
    background: #333;
    color: #fff;
    padding: 20px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: Arial, sans-serif;
}

.cookie-message {
    margin: 0 0 10px 0;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-link {
    color: #4db8ff;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #3399ff;
}

.cookie-buttons {
    display: inline-block;
}

.cookie-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.accept-button {
    background: #4db8ff;
    color: #fff;
}

.accept-button:hover {
    background: #3399ff;
}

.decline-button {
    background: #ccc;
    color: #000;
}

.decline-button:hover {
    background: #b3b3b3;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
        font-size: 0.9rem;
    }

    .cookie-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


