/* Toast Notification */
.custom-toast {
    position: fixed;
    top: 20px;
    right: -100%;
    background-color: #16a34a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    z-index: 100000;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: inherit;
}

.custom-toast.show {
    right: 20px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    width: 20px;
    height: 20px;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}
