.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ecf0f1;
    text-align: center;
    padding: 3em 2em;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.cookie-content {
    position: relative;
    display: inline-block;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

.cookie-content button {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

.cookie-content button:hover {
    background-color: #2ecc71;
}

.close-button {
    background-color: transparent;
    color: #ecf0f1;
    border: none;
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    left: 10px;
}

.close-button:hover {
    color: #bdc3c7;
}