.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Success Toast */
.toast.success {
    background-color: green;
}

/* Error Toast */
.toast.error {
    background-color: red;
}

/* Toast text */
.toast-text {
    flex: 1;
}

/* Close button */
.toast-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
    padding: 0;
}

/* Show toast */
.toast.show {
    display: flex;
    opacity: 1;
}

.time-card.selected {
    background: #0ba7d7;
}

.time-picker {
    display: none;
    position: absolute;
    top: 50%;
    left: 260;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}