/* Notification Balloon Styling */
.notification-balloon {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0ef0ad; /* Green background to represent success */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    animation: fadeInOut 3s ease-in-out;
}

/* Animation for Notification Balloon */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    10%, 90% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-10px); }
}

/* Cookie Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    font-size: 16px;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-banner span {
    margin-right: 15px;
}

.cookie-button {
    background-color: #4caf50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #45a049;
}

/* Username display in header */
.username-display {
    color: #0ef0ad;
    font-size: 14px;
    font-weight: 600;
}
