.notification {
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Make the width responsive */
    max-width: 400px; /* Maximum width for larger screens */
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: #fff;
}

.notification p {
    margin-bottom: 20px;
}

.notification button {
    background-color: #54a0ff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}

.notification button:hover {
    background-color: #4285f4;
}

.notification a {
    color: #007bff;
    text-decoration: none;
}

.notification a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notification {
        width: 90%;
        max-width: 350px;
        padding: 15px;
    }

    .notification button {
        font-size: 1em;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .notification {
        width: 95%;
        max-width: 300px;
        padding: 10px;
    }

    .notification button {
        font-size: 0.9em;
        padding: 7px 10px;
    }

    .notification p {
        font-size: 0.9em;
    }
}
