.toast-container {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    display: flex;
    justify-content: center;
    padding: 10px;
    cursor: pointer !important;
}

.toast-alert {
    /* position: relative; */
    padding: 16px 20px;
    border-radius: 5px;
    color: #fff;
    font-family: sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-width: fit-content;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toast Types */
.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

.toast-info {
    background-color: #17a2b8;
    cursor: pointer;
}

.toast-warning {
    background-color: #ffc107;
}

/* Close Button */
.toast-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer !important;
    padding: 0 10px;
}