/* .snackbar {
    visibility: hidden;
    max-width: 100%;
    min-width: 300px;
    margin-left: -10px;
    background-color: rgba(50, 50, 50, 0.8);
    border-radius: 10px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.snackbar.success {
    background-color: #3B2977;
    border: 1px solid rgba(255, 255, 255, 0.2);

}

.snackbar.error {
    background: rgba(244, 67, 54, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
} */

.snackbar {
    visibility: hidden;
    max-width: 100%;
    min-width: 300px;
    background: linear-gradient(
        135deg,
        rgba(50, 50, 50, 0.8),
        rgba(20, 20, 20, 0.8)
    );
    color: rgba(255, 255, 255, 0.9); /* Slight transparency for text */
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Softer shadow */
    -webkit-backdrop-filter: blur(10px); /* Safari */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.snackbar.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.snackbar.success {
    background: rgba(59, 41, 119, 0.8); /* Purple for success */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.snackbar.error {
    background: rgba(244, 67, 54, 0.8); /* Red for error */
    border: 1px solid rgba(255, 255, 255, 0.2);
}
