﻿.CookieMessage {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0066CC;
    border:1px #0066FF solid;
    border-radius:20px;
    color: white;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    
}

.CookieMessage-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 80%;
    justify-content: center;
}

.CookieMessage p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.CookieMessage a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
}

.CookieMessage-button {
    background-color: #5cb85c;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.CookieMessage-button:hover {
    background-color: #4cae4c;
}