.optech-toast {
    position: fixed;
    top: 100px;
    right: 30px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.optech-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.optech-toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-icon {
    font-size: 24px;
    color: #0066FF;
}

.toast-message {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.message-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.success-icon path {
    fill: #0066FF;
}

.error-icon path {
    fill: #dc3545;
}

.message-text {
    display: inline-block;
    vertical-align: middle;
}