/* Minimal Toastr CSS - Guaranteed to Work */

/* Toast Container - Top Center */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
}

#toast-container > div {
    position: relative;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    max-width: 90%;
    border-radius: 3px;
    color: #fff;
    opacity: 0.9;
    box-shadow: 0 0 12px #999;
}

#toast-container > div:hover {
    box-shadow: 0 0 12px #000;
    opacity: 1;
    cursor: pointer;
}

/* Toast Types */
.toast-success {
    background-color: #51a351;
}

.toast-error {
    background-color: #bd362f;
}

.toast-info {
    background-color: #2f96b4;
}

.toast-warning {
    background-color: #f89406;
}

/* Toast Content */
.toast-title {
    font-weight: 700;
}

.toast-message {
    word-wrap: break-word;
}

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    opacity: 0.8;
    cursor: pointer;
}

.toast-close-button:hover {
    color: #000;
    opacity: 0.4;
}

/* Progress Bar */
.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 480px) {
    #toast-container {
        left: 10px;
        right: 10px;
        transform: none;
    }
    
    #toast-container > div {
        width: 100%;
        max-width: none;
    }
}

