/* Styles for Toast Container */
.toast-container {
    position: fixed;
    z-index: 9999;
}

.toast-container.top-left {
    top: 20px;
    left: 20px;
}

.toast-container.top-right {
    top: 20px;
    right: 20px;
    bottom: auto;
    left: auto;
}

.toast-container.bottom-left {
    bottom: 20px;
    left: 20px;
    top: auto;
    right: auto;
}

.toast-container.bottom-right {
    bottom: 20px;
    right: 20px;
    top: auto;
    left: auto;
}

/* Styles for Toast Message */
.toast-message {
    background-color: #333;
    width: 200px;
    min-height: 50px;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.toast-info {
    border: 2px solid #86A8E7;
}

.toast-info > div {
    background-color: #86A8E7;
    padding: 3px;
}

.toast-success {
    border: 2px solid #5D985D;
}

.toast-success > div {
    background-color: #5D985D;
    padding: 3px;
}

.toast-warning {
    border: 2px solid #FBB13C;
}

.toast-warning > div {
    background-color: #FBB13C;
    padding: 3px;
}

.toast-error {
    border: 2px solid #D81159;
}

.toast-error > div {
    background-color: #D81159;
    padding: 3px;
}

.toast-message {
    transition: margin 0.5s ease-in-out;
}

.toast-message > div {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 20px;
}

.toast-message > div > svg {
    margin-right: 5px;
}

.toast-message > span {
    display: block;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
}