#gdpr-cookie-message {
    position: fixed;
    right: 20px;
    bottom: 20px;
    max-width: 400px;
    background-color: #3F51B5;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    margin-left: 20px;
    font-family: 'Roboto', sans-serif;
    z-index: 10000;
    max-height: 100%;
    overflow-y: auto;
    color: #fff;
}

#gdpr-cookie-message h4 {
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

#gdpr-cookie-message h5 {
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

#gdpr-cookie-message p,
#gdpr-cookie-message ul {
    color: #f8f9fa;
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 15px;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}

#gdpr-cookie-message li {
    width: 48%;
    display: inline-block;
}

#gdpr-cookie-message a {
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease-in-out;
}

#gdpr-cookie-message a:hover {
    color: #ff5252;
    border-bottom-color: #ff5252;
    transition: all 0.3s ease-in-out;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #ff5252;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 5px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

#gdpr-cookie-message button:hover {
    background: #ffffff;
    color: #ff5252;
    transition: all 0.3s ease-in-out;
}

button#gdpr-cookie-advanced {
    background: #ffffff;
    color: #007bff;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 8px;
}

@media (max-width: 576px) {
    #gdpr-cookie-message {
        right: 10px;
        bottom: 10px;
        max-width: 90%;
        padding: 20px;
    }

    #gdpr-cookie-message li {
        width: 100%;
        display: block;
    }
}
