/* Notification Styles */
.notification {
    position: fixed;
    top: 70px; /* Adjust this value according to the height of your navbar */
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Responsive width, can also use max-width */
    max-width: 80%;
    background-color: #f8f9fa; /* Light background */
    border: 1px solid #ddd; /* Light border */
    border-radius: 5px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure it is above all other content */
    display: flex; /* Use Flexbox for formatting */
    justify-content: space-between; /* Space out the buttons */
    align-items: center; /* Center vertically */
}

.notification p {
    margin: 0; /* Reset margin */
    flex-grow: 1; /* Allow text to take up remaining space */
}

.notification a {
    color: #007bff; /* Bootstrap primary color or adjust as needed */
    text-decoration: none;
    margin-left: 20px; /* Space out the buttons */
    background-color: grey;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid grey;
}

.notification a:hover {
    text-decoration: none; /* Underline on hover */
    background-color: white;
    color: grey;
}

/* Close Button */
.notification .close {
    cursor: pointer; /* Pointer cursor for clickable element */
    font-weight: bold; /* Make it stand out */
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 600px) {
    .notification {
        width: 95%; /* Slightly wider on mobile */
        padding: 10px; /* Reduce padding on mobile */
    }

    .notification p {
        font-size: 14px; /* Adjust font size for mobile */
    }

    .notification a {
        font-size: 14px; /* Adjust button font size for mobile */
    }
}