.cookie-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: #f5f5f5; /* Grey[100] background */
    color: #333; /* Darker text for contrast */
    padding: 20px;
    display: flex;
    flex-direction: column; /* Stacks elements vertically */
    align-items: center;
    font-family: Arial, sans-serif;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    text-align: center;
}

.cookie-banner p {
    margin: 0 0 10px 0; /* Adds space between text and buttons */
}

.cookie-banner a {
    color: #007bff; /* Blue link color for visibility */
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
}

.cookie-buttons button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 5px;
    border-radius: 5px; /* Rounded button corners */
}

.cookie-buttons button#deny-btn {
    background-color: red;
}
.icon-container {
    position: absolute;
    right: 0;
    top: -50px;
}
