/* Toastr Custom Styles */
#toast-container > div {
    opacity: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    background-position: 15px center;
    background-repeat: no-repeat;
    padding: 15px 15px 15px 50px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #343a40;
    transition: all 0.3s ease;
}

#toast-container > div:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

#toast-container > .toast-success {
    background-color: #fff;
    border-left: 4px solid #28a745;
}

#toast-container > .toast-error {
    background-color: #fff;
    border-left: 4px solid #dc3545;
}

#toast-container > .toast-info {
    background-color: #fff;
    border-left: 4px solid #17a2b8;
}

#toast-container > .toast-warning {
    background-color: #fff;
    border-left: 4px solid #ffc107;
}

.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #adb5bd;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.8;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.toast-close-button:hover {
    color: #343a40;
    opacity: 1;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #4ea5f2;
    opacity: 0.4;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-message {
    margin: 0;
}

/* Toastr Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.toast {
    animation: fadeIn 0.3s ease;
}

.toast.fadeOut {
    animation: fadeOut 0.3s ease;
} 