.snackbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.3);
    z-index: 9999;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.snackbar-close {
    cursor: pointer;
}

.snackbar-close svg {
    width: 13px;
}

.snackbar-close svg path {
    fill: white;
}