.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333; /* Dark background color */
    color: #ffffff; /* White text color */
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    z-index: 1000;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.cookie-consent a {
    color: #1a73e8; /* Blue color for links */
    text-decoration: none;
}

.cookie-consent button {
    background-color: #1a73e8; /* Blue background for buttons */
    color: #ffffff; /* White text color */
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
}

.cookie-consent button:hover {
    background-color: #357ae8; /* Slightly darker blue on hover */
}
