.cookie-consent-container {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 1em;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5em;
}

.cookie-consent-content h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.25em;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 1em;
    max-width: 600px;
    text-align: center;
}

.cookie-consent-buttons {
    display: flex;
    gap: 1em;
    margin-top: 1em;
}

.cookie-consent-buttons button {
    padding: 0.5em 1.25em;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

#cookie-accept {
    background-color: #4CAF50;
    color: white;
}

#cookie-accept:hover {
    background-color: #45a049;
}

#cookie-reject {
    background-color: #f44336;
    color: white;
}

#cookie-reject:hover {
    background-color: #da190b;
}
