/* Toast Notification Styles */
.notifications {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 9999;
}
.notifications .toast {
    width: 400px;
    position: relative;
    overflow: hidden;
    list-style: none;
    border-radius: 4px;
    padding: 16px 17px;
    margin-bottom: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: show_toast 0.3s ease forwards;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
@keyframes show_toast {
    0% { transform: translateX(100%); }
    40% { transform: translateX(-5%); }
    80% { transform: translateX(0%); }
    100% { transform: translateX(-10%); }
}
.notifications .toast.hide {
    animation: hide_toast 0.3s ease forwards;
}
@keyframes hide_toast {
    0% { transform: translateX(-10%); }
    40% { transform: translateX(0%); }
    80% { transform: translateX(-5%); }
    100% { transform: translateX(calc(100% + 20px)); }
}
.toast::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #0abf30;
    animation: progress 5s linear forwards;
}
@keyframes progress {
    100% { width: 0%; }
}
.toast .column {
    display: flex;
    align-items: center;
}
.toast .column i {
    font-size: 1.75rem;
    color: #0abf30;
}
.toast .column span {
    font-size: 1.07rem;
    margin-left: 12px;
}
.toast i:last-child {
    color: #aeb0d7;
    cursor: pointer;
}
.toast i:last-child:hover {
    color: #34495e;
}