﻿article {
    line-height: 1.8;
    text-align: justify;
}

#cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #2c3e50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-family: Arial, sans-serif;
    display: none;
}

    #cookie-consent p {
        margin: 0 0 10px;
        font-size: 14px;
    }

    #cookie-consent button {
        background-color: #3498db;
        color: white;
        border: none;
        padding: 8px 15px;
        margin-right: 10px;
        border-radius: 3px;
        cursor: pointer;
        font-size: 14px;
    }

        #cookie-consent button:hover {
            background-color: #2980b9;
        }

    #cookie-consent #decline-cookies {
        background-color: #e74c3c;
    }

        #cookie-consent #decline-cookies:hover {
            background-color: #c0392b;
        }
